home *** CD-ROM | disk | FTP | other *** search
/ Aminet 39 / Aminet 39 (2000)(Schatztruhe)[!][Oct 2000].iso / Aminet / util / wb / NewInstaller15.lha / NewInstaller1_5 / Install < prev    next >
Encoding:
Text File  |  1999-12-23  |  107.7 KB  |  2,040 lines

  1. ;/****************************************************************\
  2. ;**                  NewInstaller Installation                   **
  3. ;**                                     **
  4. ;**                  Done by Andreas Falkenhahn             **
  5. ;\****************************************************************/
  6. ;
  7. ; personal note: This is the last install script I create forever.
  8. ;  NewInstaller`s out....why create install scripts by hand?
  9. ;
  10. ; I know that this code can be more optimized and shortened, but
  11. ; I`ve no time for doing this atm
  12. ;
  13. ; big thanks to all members of ATO for
  14. ; translation. Thank you all!
  15. ;
  16.  
  17. ; Set strings
  18. (set version 1)
  19. (set revision 5)
  20. (set #readme "NewInstaller1_5.readme")
  21. (set cpu (database "cpu")) 
  22. (if (> (exists ("sys:libs/68060.library")) 0) (set #cpu 4) )
  23. (if (= cpu 68020) (set #cpu 1)) (if (= cpu 68030) (set #cpu 1))
  24. (if (= cpu 68040) (set #cpu 3)) (if (= cpu 68060) (set #cpu 4)) 
  25.  
  26. (set lcale
  27.     (askchoice
  28.           (prompt "Please select language")
  29.           (help    @askchoice-help)
  30.           (choices 
  31.                    "ÃeÓtina"    ;0
  32.                    "bosanski"   ;1
  33.                    "deutsch"    ;2
  34.                    "english"    ;3
  35.                    "español"    ;4
  36.                    "français"   ;5
  37.                    "italiano"   ;6
  38.                    "magyar"     ;7
  39.                    "nederlands" ;8
  40.                    "norsk"      ;9
  41.                    "polski"     ;10
  42.                    "português"  ;11
  43.                    "russian"    ;12
  44.                    "slovensko"  ;13
  45.                    "suomi"      ;14
  46.                    "türkçe"     ;15
  47.                    "ðóññêèé"    ;16
  48.           ) 
  49.     )
  50. )
  51.  
  52. ;(message lcale)
  53.  
  54. (if (= lcale 13) (
  55.    (set #welcome "\nDobrodo¹li v namestitev za\n\nNewInstaller\n\n(C) Avtorsko delo Andreasa Falkenhahna\n")
  56.    (set #copydoc "Kopiram NewInstaller dokumentacijo...")
  57.    (set #copyni  "Kopiram NewInstaller izvr¹ljive datoteke...")
  58.    (set #copymsg "Prosim, poèakajte...\n\nName¹èam NewInstaller")
  59.    (set #fnshmsg "\nNamestitev je uspela!\n\nNewInstaller lahko po¾enete v ukaznem oknu: NewInstaller!\n\nPoglejte v dokumentacijo!")
  60.    (set #language "slovensko")
  61.    (set #copyreq "\nName¹èam reqtools.library...")
  62.    (set #copygui "\nName¹èam guigfx.library...")
  63.    (set #copyren "\nName¹èam render.library...")
  64.    (set #chocpu  "\nProsim izberite svoj procesor")
  65.    (set #reqmc   "\nGuigfx.library in render.library zahtevata najmanj CPE 68020!\nTe knji¾nice ne bodo name¹èene na va¹ sistem - nekatere funkcije NewInstallerja bodo omejene!")
  66.    (set #bgfnd   "Ali bi radi obdr¾ali va¹o staro nastavitev ozadja ali pa doloèili novo?")
  67.    (set #useold  "obdr¾i")
  68.    (set #defnew  "doloèi novo")
  69.    (set #conbg   (cat "\nKot naslednji korak bo pognan program za nastavitev ozadja! "
  70.                       "Izbrati morate tri ozadja, ki ji bo NewInstaller neobvezno uporabljal kot "
  71.                       "privzete. Programa ne morete zapustiti, dokler ne izberete treh ozadji!"
  72.                  )
  73.    )
  74.    (set #sndfnd  "Ali bi radi obdr¾ali staro nastavitev zvokov ali pa doloèili novo?")
  75.    (set #consnd  (cat "\nKot naslednji korak bo pognan program za nastavitev zvokov! "
  76.                       "Izbrati morate tri zvoke, ki jih bo NewInstaller neobvezno uporabljal kot "
  77.                       "privzete. Programa ne morete zapustiti, dokler ne izberete treh zvokov! "
  78.                       "\n\nProsim upo¹tevajte, da je najveèja velikost zvoka 128 kB!"
  79.                  )
  80.    )
  81.    (set #selins  "Prosim, izberite predal, v katerem se nahaja Commodorejev Installer. Obièajno je to C:")
  82.    (set #sellha  "Prosim, izberite predal, v katerem se nahaja pakirnik LHA. Obièajno je to C:")
  83.    (set #sellzx  "Prosim, izberite predal, v katerem se nahaja pakirnik LZX. Obièajno je to C:")
  84.    (set #cfind   "V tem predalu pakirnika nisem na¹el. Ali ¾elite izbrati nov predal ali pa se ¾elite odpovedati NewInstallerjevi podpori arhiverjem?")
  85.    (set #cofind  "\nV tem predalu Commodorejevega Installerja nisem na¹el. Prosim, izberite pravi predal! Brez Commodorejevega Installerja NewInstaller ne more delovati!")
  86.    (set #new     "izberi nov predal")
  87.    (set #dont    "brez podpore pakirnika")
  88.    (set #inet    "\nAli je va¹a Amiga povezana z Internetom? Èe je, potem lahko uporabljate nove Internetne lastnosti NewInstallerja!")
  89.    (set #wprog   "Kateri TCP/IP sklad uporabljate za povezavo na Internet?")
  90.    (set #other   "drug program")
  91.    (set #otherin "\nNewInstaller ¹e ne podpira va¹ega TCP/IP sklada. To pomeni, da ne morete uporabljati avtomatske vzpostavitve zveze. Ampak, èe va¹ sklad podpira bsdsocket.library, lahko uporabljate vse druge Internetne funkcije NewInstallerja!")
  92.    (set #enname  "Prosim, vnesite svoje ime:")
  93.    (set #enmail  "Prosim vnesite po¹tni stre¾nik (SMTP) va¹ega Internet ponudnika:")
  94.    (set #helpme  (cat "Po¹tni stre¾nik je najveèkrat v obliki mail.ponudnik.si. Èe je va¹ ponudnik na primer "
  95.                       "arnes.si, potem je zelo verjetno, da je po¹tni stre¾nik mail.arnes.si. Èe niste preprièani, "
  96.                       "poglejte v nastavitve va¹ega programa za e-po¹to!"
  97.                  )
  98.    )                   
  99.    (set #myemail "Prosim, vnesite svoj e-po¹tni naslov:")
  100.    (set #endomai "Prosim vnesite domeno svojega Internet ponudnika:")
  101.    (set #helpdom "Domena va¹ega ponudnika je najveèkrat domaèa stran brez 'http://www.'. Na primer: Èe je domaèa stran va¹ega ponudnika http://www.arnes.si, potem bo domena verjetno arnes.si!")
  102.    (set #fndold  "NewInstaller je ¾e name¹èen na va¹em sistemu. Kaj ¾elite storiti sedaj?")
  103.    (set #newcon  "na novo nastavi")
  104.    (set #nothing "konèaj")
  105.    (set #insupd  "namesti posodobitev")
  106.    (set #fincon  "\nNewInstaller je bil uspe¹no nastavljen!")
  107.    (set #copyurl "\nName¹èam openurl.library...")
  108.    (set #urlpref "Kam naj skopiram nastavitve za OpenUrl.library?")
  109.    (set #urlcon  "\nAli ¾elite sedaj nastaviti OpenUrl.library (priporoèeno)?")
  110.    (set #copyide "\nName¹èam identify.library...")
  111.    (set #msgide  "\nCeloten identify paket lahko dobite na Aminetu ali na domaèi strani avtorja Richarda Körbera!")
  112.    (set #copypop "\nName¹èam Popport.mcc...")
  113.    (set #defdrws (cat "\nKot naslednje lahko izberete razliène predale za razliène vrste programske opreme "
  114.                       "Na primer za igre: dh2:Igre/. Skupaj lahko izberete 15 razliènih vrst "
  115.                       "predalov programske opreme. Èe nimate predala za posamezno vrsto programske opreme, "
  116.                       "npr. za razvojne programe, izberite kar SYS: ali kaj podobnega."
  117.                  )
  118.    )
  119.    (set #dedrw_a "Prosim, izberi predal kjer so")
  120.    (set #dedrw_b "name¹èene/i/a va¹e/i/a!")
  121.    (set #defabiz "Poslovni programi")
  122.    (set #defcomm "Komunikacijski programi")
  123.    (set #defdemo "Grafiène in zvoène predstavitve")
  124.    (set #defadev "Razvojni programi")
  125.    (set #defdisk "Disk in HD orodja")
  126.    (set #defdocs "Dokumenti")
  127.    (set #defgame "Igre")
  128.    (set #defagfx "Grafièni programi")
  129.    (set #defhard "Strojni popravki")
  130.    (set #defmisc "Razni programi")
  131.    (set #defmods "Glasbeni moduli")
  132.    (set #defamus "Glasbeni programi")
  133.    (set #defapix "Slike")
  134.    (set #deftext "Besedilni programi")
  135.    (set #defutil "Uporabni programi")
  136. ))
  137.  
  138. (if (= lcale 4) (
  139.    (set #welcome "\nBienvenido al instalador de\n\nNewInstaller\n\n(C) Copyright por Andreas Falkenhahn\n")
  140.    (set #copydoc "Copiando documentación de NewInstaller...")
  141.    (set #copyni  "Copiando ejecutable de NewInstaller...")
  142.    (set #copymsg "Por favor, espere...\n\nInstalando NewInstaller")
  143.    (set #fnshmsg "\n¡Instalación finalizada!\n\nPuede ejecutar NewInstaller por CLI: NewInstaller\n\n¡Echele un vistazo a la documentación!")  
  144.    (set #language "español")
  145.    (set #copyreq "\nInstalando reqtools.library...")
  146.    (set #copygui "\nInstalando guigfx.library...")
  147.    (set #copyren "\nInstalando render.library...")
  148.    (set #chocpu  "\nPor favor, seleccione su procesador")
  149.    (set #reqmc   "\n¡Guigfx.library y render.library requieren 68020 o superior!\nEstas librerias no pueden ser instaladas en su sistema - ¡Algunas funciones de NewInstaller serán descativadas!")
  150.    (set #bgfnd   "¿Quiere conservar su configuración del fondo o definir uno nuevo ahora?")
  151.    (set #useold  "Conservar")
  152.    (set #defnew  "Definir nuevo")
  153.    (set #conbg   (cat "\n¡En el próximo paso el programa de configuración del fondo comenzará! "
  154.                       "Seleccione 3 fondos, NewInstaller los usará opcionalmente "
  155.                       "por defecto. ¡No podrá salir del programa mientras no haya seleccionado 3 fondos!"
  156.                  )
  157.    )
  158.    (set #sndfnd  "¿Quiere conservar su configuración de sonido o definir una nueva?")
  159.    (set #consnd  (cat "\n¡En el próximo paso, el programa de configuración de sonido comenzará! "
  160.                       "Necesita seleccionar 3 sonidos, NewInstaller los usará "
  161.                       "por defecto.¡No podrá salir del programa mientras no haya seleccionado 3 sonidos! "
  162.                       "\n\nRecuerde que el tamaño máximo del sonido es de 128Kb!" 
  163.                  )
  164.    )
  165.    (set #selins  "Por favor, seleccione el directorio donde el comando Installer de Commodore está almacenado. Normalmente es C:")
  166.    (set #sellha  "Por favor, seleccione el directorio donde el compresor LHA está almacenado. Normalmente es C:")
  167.    (set #sellzx  "Por favor, seleccione el directorio donde el compresor LZX está almacenado. Normalmente es C:")
  168.    (set #cfind   "El compresor no se encuentra en el directorio. ¿Quiere seleccionar otro directorio o quiere abandonar la instalación de soporte de compresores de NewInstaller?")
  169.    (set #cofind  "\nel comando Installer de Commodore no se encuentra en el directorio. Por favor, ¡seleccione el directorio correcto! Sin el Installer de Commodore, ¡NewInstaller no funcionará!")
  170.    (set #new     "Seleccione nuevo directorio")
  171.    (set #dont    "No instalar soporte de compresores")  
  172.    (set #inet    "\n¿Está su amiga conectado a Internet? Si lo está, puede usar las características para Internet de NewInstaller")
  173.    (set #wprog   "¿Qué paquete de TCP/IP usa para conectarse a Internet?")
  174.    (set #other   "Otro programa")
  175.    (set #otherin "\nNewInstaller no está soportado por su paquete de TCP/IP aún. Eso significa que no podrá usar la utilidad Auto-Conectarse. ¡Pero si su paquete soporta bsdsocket.library puede usar las demás funciones para Internet de NewInstaller!")
  176.    (set #enname  "Por favor, teclee tu nombre:")
  177.    (set #enmail  "Teclee su servidor de correo (SMTP) de su proveedor de Internet:")
  178.    (set #helpme  (cat "El servidor de correo suele ser en la mayoria de los casos 'mail.mi_proveedor.com'. Si su proveedor es por ejemplo: "
  179.                       "online.no entonces el servidor de correo será probablemente mail.online.no. Si no está seguro "
  180.                       "mire la configuración de su programa de correo"
  181.                  )
  182.    )                   
  183.    (set #myemail "Por favor, teclee su dirección de correo electrónico:")
  184.    (set #endomai "Por favor, teclee el dominio de su proveedor de Internet:")
  185.    (set #helpdom "El dominio suele ser en la mayoria de los casos la dirección de su web sin 'http://www.'. Por ejemplo: Si la web de su proveedor es http://www.dialup.no, entonces el dominio será probablemente dialup.no")
  186.    (set #fndold  "NewInstaller está completamente instalado en su sistema. ¿Qué quiere hacer ahora?")
  187.    (set #newcon  "Configurarlo de nuevo")
  188.    (set #nothing "Salir")   
  189.    (set #insupd  "Instalar la actualización")
  190.    (set #fincon  "\n¡NewInstaller ha sido configurado satisfactóriamente!")
  191.    (set #copyurl "\nInstalando openurl.library...")
  192.    (set #urlpref "¿Donde quiere que copie las preferencias de OpenUrl.library?")
  193.    (set #urlcon  "\n¿Quiere configurar OpenUrl.library ahora? (Aconsejable)")
  194.    (set #copyide "\nInstalando identify.library...")
  195.    (set #msgide  "\n¡Puede conseguir el paquete completo de 'identify' en Aminet o en la página web del autor, Richard Körber!")
  196.    (set #copypop "\nInstalando Popport.mcc...")
  197.    (set #defdrws (cat "\nEn el próximo paso puede escoger diferentes directorios para diferentes paquetes de Programas "
  198.                       "Por ejemplo: Juegos: dh2:juegos/. Puede seleccionar un total de 15 directorios "
  199.                       "de programas diferentes. si no tiene un directorio para los diferentes paquetes de programas, "
  200.                       "E.j. , para herramientas de desarrollo, entonces seleccione SYS: o algo similar."
  201.                  )
  202.    )
  203.    (set #dedrw_a "Por favor, ¡seleccione los directorios ")
  204.    (set #dedrw_b "donde va(n) a ser instalados!")
  205.    (set #defabiz "Programas de Negocios")
  206.    (set #defcomm "Comunicaciones")
  207.    (set #defdemo "Demos gráficas y de sonido")
  208.    (set #defadev "Programas de desarrollo")
  209.    (set #defdisk "Herramientas de discos")
  210.    (set #defdocs "Documentos")
  211.    (set #defgame "Juegos")
  212.    (set #defagfx "Programas de Gráficos")
  213.    (set #defhard "Parches de Hardware")
  214.    (set #defmisc "Miscelanea")
  215.    (set #defmods "Módulos de música")
  216.    (set #defamus "Programas de música")
  217.    (set #defapix "Dibujos")
  218.    (set #deftext "Procesadores de texto")
  219.    (set #defutil "Utilidades")  
  220. ))
  221.  
  222. (if (= lcale 1) (
  223.    (set #welcome "\nDobrodosli u Instalaciju\n\nNewInstallera\n\n(C) Copyright Andreas Falkenhahn\n")
  224.    (set #copydoc "Kopiram dokumentaciju NewInstallera...")
  225.    (set #copyni  "Kopiram program NewInstaller...")
  226.    (set #copymsg "Molim sacekati...\n\nInstalacija NewInstaller-a je u toku")
  227.    (set #fnshmsg "\nInstalacija je uspjela!\n\nMozes pokrenuti NewInstaller sa CLI-ja: NewInstaller.\n\Procitaj dokumentaciju!")  
  228.    (set #language "bosanski")
  229.    (set #copyreq "\nInstaliram reqtools.library...")
  230.    (set #copygui "\nInstaliram guigfx.library...")
  231.    (set #copyren "\nInstaliram render.library...")
  232.    (set #chocpu  "\nIzaberi tvoj procesor")
  233.    (set #reqmc   "\nGuigfx.library i render.library zahtjevaju minimalno 68020 procesor!\nOve biblioteke nece biti instalirane na tvoj sistem, tako da ce neke funkcije NewInstaller-a biti ogranicene!")
  234.    (set #bgfnd   "Zelis li zadrzati tvoju staru pozadinu ili izabrati novu?")
  235.    (set #useold  "Zadrzi")
  236.    (set #defnew  "Izaberi novu")
  237.    (set #conbg   (cat "\nSlijedeci korak je pokeretanje programa za izbor pozadine."
  238.                       "Trebas izabrati tri pozadine koje ce NewInstaller koristiti kao"
  239.                       "Default. Nije moguce izaci iz programa dok se ne izaberu ove tri pozadine!"
  240.                  )
  241.    )
  242.    (set #sndfnd  "Zelis li zadrzati staru konfiguraciju zvuka ili izabrati novu?")
  243.    (set #consnd  (cat "\nSlijedeci korak je pokeretanje programa za izbor zvukova."
  244.                      "Trebas izabrati tri zvuka koje ce NewInstaller koristiti kao"
  245.                      "Default. Nije moguce izaci iz programa dok se ne izaberu ova tri zvuka!"
  246.                       "\n\nZapamti da zvukovi ne smiju biti veci od 128K!" 
  247.                  )
  248.    )
  249.    (set #selins  "Izaberi ladicu u kojoj se nalazi Commodore-ov installer. Obicno je to C:")
  250.    (set #sellha  "Izaberi ladicu u kojoj se nalazi LHA Packer. Obicno je to C:")
  251.    (set #sellzx  "Izaberi ladicu u kojoj se nalazi LZX Packer. Obicno je to C:")
  252.    (set #cfind   "Ne mogu pronaci Packer u toj ladici. Zelis li izabrati drugu ladicu ili odustati od koristenja NewInstalerovih mogucnosti pakovanja?")
  253.    (set #cofind  "\nNe mogu pronaci Commodore-ov installer u toj ladici. Molim te izaberi pravu ladicu! Bez Commodore-ovog Installer-a NewInstaller ne moze raditi!")
  254.    (set #new     "izaberi novu ladicu")
  255.    (set #dont    "odustani od packera")
  256.    (set #inet    "\nJe li tvoja Amiga prikljucena na Internet? Ako jeste, mozes koristiti Internet mogucnosti NewInstaller-a!")
  257.    (set #wprog   "Koji TCP/IP Stack koristis za prikljucivanje na Internet?")
  258.    (set #other   "drugi program")
  259.    (set #otherin "\nNewInstaller ne podrzava tvoj TCP/IP Stack. To znaci da ne mozes koristiti Auto-online funkciju, ali ako tvoj stack podrzava bsdsocket.library mozes koristiti sve ostale opcije za Internet!")
  260.    (set #enname  "Upisi tvoje ime:")
  261.    (set #enmail  "Upisi mailserver (SMTP) tvog Internet Providera:")
  262.    (set #helpme  (cat "Mailserver je uglavnom nesto kao mail.myprovider.com. Ako je tvoj provider, na primjer "
  263.                       "online.no onda ce mailserver najvjerovatnije biti mail.online.no. Ako nisi siguran pogledaj "
  264.                       "konfiguraciju tvog mail programa!"
  265.                  )
  266.    )                   
  267.    (set #myemail "Upisi tvoju e-mail adresu:")
  268.    (set #endomai "Upisi Domain tvog Internet Provider-a:")
  269.    (set #helpdom "Domain providera je uglavnom providerov Homepage bez 'http://www.'. Na primjer: Ako je Homepage tvog providera http://www.dialup.no onda ce domain najvjerovatnije biti dialup.no!")
  270.    (set #fndold  "NewInstaller je vec' instaliran na tvoj sistem. Sta zelis uraditi?")
  271.    (set #newcon  "nova konfiguracija")
  272.    (set #nothing "izlaz")   
  273.    (set #insupd  "instaliraj novu verziju")
  274.    (set #fincon  "\nKonfiguracija NewInstaller-a je uspjela!")
  275.    (set #copyurl "\nInstaliram openurl.library...")
  276.    (set #urlpref "Gdje trebam kopirati Prefs za OpenUrl.library?")
  277.    (set #urlcon  "\nZelis li konfigurirati OpenUrl.library sad (preporuceno) ?")
  278.    (set #copyide "\nInstaliram identify.library...")
  279.    (set #msgide  "\nMozes naci cijeli paket Identify-ja na Aminetu ili na stranici Richard-a Körber-a (autor)!")
  280.    (set #copypop "\nInstaliram Popport.mcc...")
  281.    (set #defdrws (cat "\nSada je potrebno izabrati razlicite ladice za razlicite tipove programa "
  282.                       "Na primjer za igre bi moglo biti: dh1:Igre/. Trebas izabrati 15 tipova ladica "
  283.                       "za software. Ako nemas ladicu za neki tip softvera, npr. za programiranje "
  284.                       "izaberi SYS: ili nesto slicno."
  285.                  )
  286.    )
  287.    (set #dedrw_a "Izaberi ladicu gdje instaliras")
  288.    (set #dedrw_b "!")
  289.    (set #defabiz "posleni software")
  290.    (set #defcomm "komunikacije")
  291.    (set #defdemo "graficke i zvucne demo programe")
  292.    (set #defadev "software za programiranje")
  293.    (set #defdisk "programe za diskete i HD")
  294.    (set #defdocs "dokumente")
  295.    (set #defgame "igre")
  296.    (set #defagfx "graficki software")
  297.    (set #defhard "ispravke hardware-a")
  298.    (set #defmisc "razno")
  299.    (set #defmods "muzicke module")
  300.    (set #defamus "muzicki software")
  301.    (set #defapix "slike")
  302.    (set #deftext "programe za obradu teksta")
  303.    (set #defutil "korisnicke programe")  
  304. ))
  305.  
  306. (if (= lcale 11) (
  307.    (set #welcome "\nSeja bem-vindo ao Installer do\n\nNewInstaller\n\n(C) Copyright de Andreas Falkenhahn\n")
  308.    (set #copydoc "A copiar a documentação do NewInstaller...")
  309.    (set #copyni  "A copiar o executável do NewInstaller...")
  310.    (set #copymsg "Aguarde, por favor...\n\nA instalar o NewInstaller")
  311.    (set #fnshmsg "\nInstalação terminada!\n\nPode iniciar o NewInstaller com o CLI!\n\nÉ aconselhável ler a documentação!")  
  312.    (set #language "português")
  313.    (set #copyreq "\nA instalar a reqtools.library...")
  314.    (set #copygui "\nA instalar a guigfx.library...")
  315.    (set #copyren "\nA instalar a render.library...")
  316.    (set #chocpu  "\nPor favor, indique o seu processador:")
  317.    (set #reqmc   "\nA guigfx.library e a render.library requerem no mínimo um 68020!\nComo não podem ser instaladas no seu sistema, algumas das funções do NewInstaller serão limitadas!")
  318.    (set #bgfnd   "Deseja manter a sua config. anterior de imagens de fundo ou prefere definir uma nova?")
  319.    (set #useold  "Manter")
  320.    (set #defnew  "Definir uma Nova")
  321.    (set #conbg   (cat "\nNesta fase da instalação, vai ser lançado o programa de configuração de fundos. "
  322.                       "Nele, é preciso escolher três imagens de fundo que o NewInstaller vai usar "
  323.                       "opcionalmente como fundos pré-definidos. É imperativo escolher três imagens!"
  324.                  )
  325.    )
  326.    (set #sndfnd  "Deseja manter a sua config. de sons de fundo anterior ou prefere definir uma nova?")
  327.    (set #consnd  (cat "\nNesta fase da instalação, vai ser lançado o programa de config. de sons de fundo. "
  328.                       "Nele, é preciso escolher três sons de fundo que o NewInstaller vai usar "
  329.                       "opcionalmente como sons pré-definidos. É imperativo escolher três sons! "
  330.                       "\n\nLembre-se que cada som só pode ter no máximo 128kb de tamanho!" 
  331.                  )
  332.    )
  333.    (set #selins  "Por favor, indique a gaveta onde se encontra o Commodore Installer. Normalmente, a gaveta é C:")
  334.    (set #sellha  "Por favor, indique a gaveta onde se encontra o LHA. Normalmente, a gaveta é C:")
  335.    (set #sellzx  "Por favor, indique a gaveta onde se encontra o LZX. Normalmente, a gaveta é C:")
  336.    (set #cfind   "O programa de compressão não foi encontrado. Quer indicar uma nova gaveta ou prefere usar o NewInstaller sem suporte para compressão?")
  337.    (set #cofind  "\nO Commodore Installer não foi encontrado. Por favor, indique a gaveta correcta! Sem o Commodore Installer, o NewInstaller não pode trabalhar!")
  338.    (set #new     "Indicar uma Nova Gaveta")
  339.    (set #dont    "Prescindir do Suporte para Compressão")  
  340.    (set #inet    "\nO seu Amiga está ligado à Internet? Se assim for, pode usufruir das novas funções Internet do NewInstaller!")
  341.    (set #wprog   "Qual é o programa de TCP/IP que usa para se ligar à Internet?")
  342.    (set #other   "Outro Programa")
  343.    (set #otherin "\nO NewInstaller ainda não suporta o seu programa de TCP/IP, pelo que não é possível usar a função Auto-Online. Mas se o seu programa suporta a bsdsocket.library, pode usar todas as outras funções Internet do NewInstaller!")
  344.    (set #enname  "Por favor, indique o seu nome:")
  345.    (set #enmail  "Por favor, indique o servidor de correio (SMTP) do seu fornecedor de acesso à Internet:")
  346.    (set #helpme  (cat "Na maioria dos casos, o servidor de correio tem o formato mail.o_meu_fornecedor.código_do_país. "
  347.                       "Se o seu fornecedor é, por ex., telepac.pt, o servidor de correio será provavelmente mail.telepac.pt. "
  348.                       "Se não tem a certeza destes dados, veja a configuração do seu programa de Email!"
  349.                  )
  350.    )                   
  351.    (set #myemail "Por favor, indique o seu endereço de Email:")
  352.    (set #endomai "Por favor, indique o domínio do seu fornecedor de acesso à Internet:")
  353.    (set #helpdom "O domínio do seu fornecedor é quase sempre o URL da página na Web sem o 'http://www.'. Por ex., se a página do seu fornecedor se encontrar em http://www.telepac.pt, o domínio será provavelmente telepac.pt.")
  354.    (set #fndold  "O NewInstaller já se encontra instalado no seu sistema. O que deseja fazer agora?")
  355.    (set #newcon  "Redefinir a Configuração")
  356.    (set #nothing "Sair")   
  357.    (set #insupd  "Actualizar a Instalação")
  358.    (set #fincon  "\nO NewInstaller foi configurado com êxito!")
  359.    (set #copyurl "\nA instalar a openurl.library...")
  360.    (set #urlpref "Para onde deve ser copiado o programa de preferências da OpenUrl.library?")
  361.    (set #urlcon  "\nDeseja configurar agora a OpenUrl.library (recomendado) ?")
  362.    (set #copyide "\nA instalar a identify.library...")
  363.    (set #msgide  "\nPode obter o programa Identify completo na Aminet ou na página do autor Richard Körber.")
  364.    (set #copypop "\nA instalar a Popport.mcc...")
  365.    (set #defdrws (cat "\nNesta fase da instalação, pode seleccionar as diferentes gaveta do seu disco "
  366.                       "rígido que correspondem a diferentes tipos de software. É possível seleccionar "
  367.                       "gavetas para um máximo de 15 tipos de software. Se não tiver uma gaveta para um "
  368.                       "certo tipo de software (ex. programação), basta indicar SYS:."
  369.                  )
  370.    )
  371.    (set #dedrw_a "Por favor, indique a gaveta onde")
  372.    (set #dedrw_b "costuma instalar:")
  373.    (set #defabiz "Software de Negócios")
  374.    (set #defcomm "Software de Comunicação em Rede")
  375.    (set #defdemo "Demos de Gráficos e Som")
  376.    (set #defadev "Software de Programação")
  377.    (set #defdisk "Ferramentas para Discos Rígidos e Disquetes")
  378.    (set #defdocs "Documentos")
  379.    (set #defgame "Jogos")
  380.    (set #defagfx "Software de Gráficos")
  381.    (set #defhard "'Patches' para Hardware")
  382.    (set #defmisc "Programas Diversos")
  383.    (set #defmods "Módulos de Música")
  384.    (set #defamus "Software de Música")
  385.    (set #defapix "Imagens")
  386.    (set #deftext "Software de Texto")
  387.    (set #defutil "Utilidades Gerais")  
  388. ))
  389.  
  390. (if (= lcale 14) (
  391.    (set #welcome "\nTervetuloa asentamaan\n\nNewInstaller\n\n(C) Tekijänoikeudet Andreas Falkenhahn\n")
  392.    (set #copydoc "Kopioi NewInstallerin dokumentointia...")
  393.    (set #copyni  "Kopioi NewInstallerin ajettavaa osaa...")
  394.    (set #copymsg "Ole hyvä ja odota...\n\nAsentaa NewInstalleria")
  395.    (set #fnshmsg "\nAsennus onnistui!\n\nVoit käynnistää NewInstallerin\nkäskyllä CLI: NewInstaller!\n\nVilkaise dokumentointia!")
  396.    (set #language "suomi")
  397.    (set #copyreq "\nInstalling reqtools.library...")
  398.    (set #copygui "\nInstalling guigfx.library...")
  399.    (set #copyren "\nInstalling render.library...")
  400.    (set #chocpu  "\nPlease select your processor")
  401.    (set #reqmc   "\nGuigfx.library and render.library require at least a 68020 CPU!\nThese libraries won`t be installed on your syste - there some functions of NewInstaller are restricted!")
  402.    (set #bgfnd   "Do you want to retain your old background configuration or define them new?")
  403.    (set #useold  "retain")
  404.    (set #defnew  "define new")
  405.    (set #conbg   (cat "\nAs the next step the configuration program for the backgrounds will be started! "
  406.                       "You need to select three backgrounds, which NewInstaller will optionally use as "
  407.                       "default. You cannot quit the program until you`ve selected the three backgrounds!"
  408.                  )
  409.    )
  410.    (set #sndfnd  "Do you want to retain your old sound configuration or define them new?")
  411.    (set #consnd  (cat "\nAs the next step the configuration program for the sounds will be started! "
  412.                       "You need to select three sounds, which NewInstaller will optionally use as "
  413.                       "default. You cannot quit the program until you`ve selected the three sounds! "
  414.                       "\n\nPlease note that the maximum size of a sound is 128kb!" 
  415.                  )
  416.    )
  417.    (set #selins  "Please select the drawer where the Commodore Installer is stored in. Normally this is C:")
  418.    (set #sellha  "Please select the drawer where the LHA packer is stored in. Normally this is C:")
  419.    (set #sellzx  "Please select the drawer where the LZX packer is stored in. Normally this is C:")
  420.    (set #cfind   "The packer couldn`t be found in that drawer. Do you want to select a new drawer or do you want to renounce NewInstallers packersupport?")
  421.    (set #cofind  "\nThe Commodore Installer couldn`t be found in that drawer. Please select the right drawer! Without the Commodore Installer NewInstaller cannot work!")
  422.    (set #new     "select new drawer")
  423.    (set #dont    "don`t installer packer support")  
  424.    (set #inet    "\nIs your Amiga connected to Internet? If this is the case, you can use the new Internet features of NewInstaller!")
  425.    (set #wprog   "Which TCP/IP Stack do you use to connect to Internet?")
  426.    (set #other   "other program")
  427.    (set #otherin "\nNewInstaller does not support your TCP/IP Stack yet. That means you cannot use the Auto-Online feature. But if your stack does support bsdsocket.library you can use all other Internet functions of NewInstaller!")
  428.    (set #enname  "Please enter your name:")
  429.    (set #enmail  "Please enter the mailserver (SMTP) of your Internet Service Provider:")
  430.    (set #helpme  (cat "The mailserver is mostly in a form like mail.myprovider.com. If your provider is for example "
  431.                       "online.no then the mailserver would most probably mail.online.no. If you`re not sure have a "
  432.                       "look at the configuration of your email software!"
  433.                  )
  434.    )                   
  435.    (set #myemail "Please enter your email address:")
  436.    (set #endomai "Please enter the domain of your Internet Service Provider:")
  437.    (set #helpdom "The domain of your provider is mostly the homepage without 'http://www.'. For example: If the homepage of your provider is http://www.dialup.no then the domain would most probably be dialup.no!")
  438.    (set #fndold  "NewInstaller is already installed on your system. What do you want to do now?")
  439.    (set #newcon  "configurate it new")
  440.    (set #nothing "exit")   
  441.    (set #insupd  "install update")
  442.    (set #fincon  "\nNewInstaller was configured successfully!")
  443.    (set #copyurl "\nInstalling openurl.library...")
  444.    (set #urlpref "Where shall the preferences for OpenUrl.library be copied to?")
  445.    (set #urlcon  "\nDo you want to configure OpenUrl.library now (advised) ?")
  446.    (set #copyide "\nInstalling identify.library...")
  447.    (set #msgide  "\nYou can get the full identify package from Aminet or from the homepage of the author Richard Körber!")
  448.    (set #copypop "\nInstalling Popport.mcc...")
  449.    (set #defdrws (cat "\nAs next you can select different drawers for different kinds of software "
  450.                       "For example for games: dh2:Games/. You can totally select 15 different kinds "
  451.                       "of software drawers. If you do not have a drawer for some kind of software, "
  452.                       "e.g. for developing tools, just select SYS: or something similar."
  453.                  )
  454.    )
  455.    (set #dedrw_a "Please select the drawer where your")
  456.    (set #dedrw_b "is/are installed!")
  457.    (set #defabiz "Business software")
  458.    (set #defcomm "Communications")
  459.    (set #defdemo "Graphics & Sound demos")
  460.    (set #defadev "Development software")
  461.    (set #defdisk "Disk & HD Tools")
  462.    (set #defdocs "Documents")
  463.    (set #defgame "Games")
  464.    (set #defagfx "Graphics software")
  465.    (set #defhard "Hardware Patches")
  466.    (set #defmisc "Miscellaneous")
  467.    (set #defmods "Music modules")
  468.    (set #defamus "Music software")
  469.    (set #defapix "Pictures")
  470.    (set #deftext "Text software")
  471.    (set #defutil "Utilities")  
  472. ))
  473.  
  474. (if (= lcale 8) (
  475.    (set #welcome "\nWelkom bij de Installer voor\n\nNewInstaller\n\n(C) Copyright door Andreas Falkenhahn\n")
  476.    (set #copydoc "Kopiëren van NewInstaller documentatie...")
  477.    (set #copyni  "Kopiëren van NewInstaller programma...")
  478.    (set #copymsg "Wacht even...\n\nInstalleren van NewInstaller")
  479.    (set #fnshmsg "\nInstallatie voltooid!\n\nU kunt NewInstaller starten vanuit de CLI: NewInstaller!\n\nLees de documentatie!")
  480.    (set #language "nederlands")
  481.    (set #copyreq "\nInstalling reqtools.library...")
  482.    (set #copygui "\nInstalling guigfx.library...")
  483.    (set #copyren "\nInstalling render.library...")
  484.    (set #chocpu  "\nPlease select your processor")
  485.    (set #reqmc   "\nGuigfx.library and render.library require at least a 68020 CPU!\nThese libraries won`t be installed on your syste - there some functions of NewInstaller are restricted!")
  486.    (set #bgfnd   "Do you want to retain your old background configuration or define them new?")
  487.    (set #useold  "retain")
  488.    (set #defnew  "define new")
  489.    (set #conbg   (cat "\nAs the next step the configuration program for the backgrounds will be started! "
  490.                       "You need to select three backgrounds, which NewInstaller will optionally use as "
  491.                       "default. You cannot quit the program until you`ve selected the three backgrounds!"
  492.                  )
  493.    )
  494.    (set #sndfnd  "Do you want to retain your old sound configuration or define them new?")
  495.    (set #consnd  (cat "\nAs the next step the configuration program for the sounds will be started! "
  496.                       "You need to select three sounds, which NewInstaller will optionally use as "
  497.                       "default. You cannot quit the program until you`ve selected the three sounds! "
  498.                       "\n\nPlease note that the maximum size of a sound is 128kb!" 
  499.                  )
  500.    )
  501.    (set #selins  "Please select the drawer where the Commodore Installer is stored in. Normally this is C:")
  502.    (set #sellha  "Please select the drawer where the LHA packer is stored in. Normally this is C:")
  503.    (set #sellzx  "Please select the drawer where the LZX packer is stored in. Normally this is C:")
  504.    (set #cfind   "The packer couldn`t be found in that drawer. Do you want to select a new drawer or do you want to renounce NewInstallers packersupport?")
  505.    (set #cofind  "\nThe Commodore Installer couldn`t be found in that drawer. Please select the right drawer! Without the Commodore Installer NewInstaller cannot work!")
  506.    (set #new     "select new drawer")
  507.    (set #dont    "don`t installer packer support")  
  508.    (set #inet    "\nIs your Amiga connected to Internet? If this is the case, you can use the new Internet features of NewInstaller!")
  509.    (set #wprog   "Which TCP/IP Stack do you use to connect to Internet?")
  510.    (set #other   "other program")
  511.    (set #otherin "\nNewInstaller does not support your TCP/IP Stack yet. That means you cannot use the Auto-Online feature. But if your stack does support bsdsocket.library you can use all other Internet functions of NewInstaller!")
  512.    (set #enname  "Please enter your name:")
  513.    (set #enmail  "Please enter the mailserver (SMTP) of your Internet Service Provider:")
  514.    (set #helpme  (cat "The mailserver is mostly in a form like mail.myprovider.com. If your provider is for example "
  515.                       "online.no then the mailserver would most probably mail.online.no. If you`re not sure have a "
  516.                       "look at the configuration of your email software!"
  517.                  )
  518.    )                   
  519.    (set #myemail "Please enter your email address:")
  520.    (set #endomai "Please enter the domain of your Internet Service Provider:")
  521.    (set #helpdom "The domain of your provider is mostly the homepage without 'http://www.'. For example: If the homepage of your provider is http://www.dialup.no then the domain would most probably be dialup.no!")
  522.    (set #fndold  "NewInstaller is already installed on your system. What do you want to do now?")
  523.    (set #newcon  "configurate it new")
  524.    (set #nothing "exit")   
  525.    (set #insupd  "install update")
  526.    (set #fincon  "\nNewInstaller was configured successfully!")
  527.    (set #copyurl "\nInstalling openurl.library...")
  528.    (set #urlpref "Where shall the preferences for OpenUrl.library be copied to?")
  529.    (set #urlcon  "\nDo you want to configure OpenUrl.library now (advised) ?")
  530.    (set #copyide "\nInstalling identify.library...")
  531.    (set #msgide  "\nYou can get the full identify package from Aminet or from the homepage of the author Richard Körber!")
  532.    (set #copypop "\nInstalling Popport.mcc...")
  533.    (set #defdrws (cat "\nAs next you can select different drawers for different kinds of software "
  534.                       "For example for games: dh2:Games/. You can totally select 15 different kinds "
  535.                       "of software drawers. If you do not have a drawer for some kind of software, "
  536.                       "e.g. for developing tools, just select SYS: or something similar."
  537.                  )
  538.    )
  539.    (set #dedrw_a "Please select the drawer where your")
  540.    (set #dedrw_b "is/are installed!")
  541.    (set #defabiz "Business software")
  542.    (set #defcomm "Communications")
  543.    (set #defdemo "Graphics & Sound demos")
  544.    (set #defadev "Development software")
  545.    (set #defdisk "Disk & HD Tools")
  546.    (set #defdocs "Documents")
  547.    (set #defgame "Games")
  548.    (set #defagfx "Graphics software")
  549.    (set #defhard "Hardware Patches")
  550.    (set #defmisc "Miscellaneous")
  551.    (set #defmods "Music modules")
  552.    (set #defamus "Music software")
  553.    (set #defapix "Pictures")
  554.    (set #deftext "Text software")
  555.    (set #defutil "Utilities")  
  556. ))
  557.  
  558. (if (= lcale 9) (
  559.    (set #welcome "\nVelkommen til Installasjons scriptet for\n\nNewInstaller\n\n(C) Kopibeskyttet av Andreas Falkenhahn\n")
  560.    (set #copydoc "Kopierer NewInstaller dokumentsjonen...")
  561.    (set #copyni  "Kopierer NewInstaller programmet...")
  562.    (set #copymsg "Vennligst vent...\n\nInstallerer NewInstaller")
  563.    (set #fnshmsg "\nInstallasjonen er vellykket!\n\nDu kan nå starte NewInstaller ved CLI: NewInstaller!\n\nTa en titt på dokumentasjonen!")
  564.    (set #language "norsk")
  565.    (set #copyreq "\nInstalling reqtools.library...")
  566.    (set #copygui "\nInstalling guigfx.library...")
  567.    (set #copyren "\nInstalling render.library...")
  568.    (set #chocpu  "\nPlease select your processor")
  569.    (set #reqmc   "\nGuigfx.library and render.library require at least a 68020 CPU!\nThese libraries won`t be installed on your syste - there some functions of NewInstaller are restricted!")
  570.    (set #bgfnd   "Do you want to retain your old background configuration or define them new?")
  571.    (set #useold  "retain")
  572.    (set #defnew  "define new")
  573.    (set #conbg   (cat "\nAs the next step the configuration program for the backgrounds will be started! "
  574.                       "You need to select three backgrounds, which NewInstaller will optionally use as "
  575.                       "default. You cannot quit the program until you`ve selected the three backgrounds!"
  576.                  )
  577.    )
  578.    (set #sndfnd  "Do you want to retain your old sound configuration or define them new?")
  579.    (set #consnd  (cat "\nAs the next step the configuration program for the sounds will be started! "
  580.                       "You need to select three sounds, which NewInstaller will optionally use as "
  581.                       "default. You cannot quit the program until you`ve selected the three sounds! "
  582.                       "\n\nPlease note that the maximum size of a sound is 128kb!" 
  583.                  )
  584.    )
  585.    (set #selins  "Please select the drawer where the Commodore Installer is stored in. Normally this is C:")
  586.    (set #sellha  "Please select the drawer where the LHA packer is stored in. Normally this is C:")
  587.    (set #sellzx  "Please select the drawer where the LZX packer is stored in. Normally this is C:")
  588.    (set #cfind   "The packer couldn`t be found in that drawer. Do you want to select a new drawer or do you want to renounce NewInstallers packersupport?")
  589.    (set #cofind  "\nThe Commodore Installer couldn`t be found in that drawer. Please select the right drawer! Without the Commodore Installer NewInstaller cannot work!")
  590.    (set #new     "select new drawer")
  591.    (set #dont    "don`t installer packer support")  
  592.    (set #inet    "\nIs your Amiga connected to Internet? If this is the case, you can use the new Internet features of NewInstaller!")
  593.    (set #wprog   "Which TCP/IP Stack do you use to connect to Internet?")
  594.    (set #other   "other program")
  595.    (set #otherin "\nNewInstaller does not support your TCP/IP Stack yet. That means you cannot use the Auto-Online feature. But if your stack does support bsdsocket.library you can use all other Internet functions of NewInstaller!")
  596.    (set #enname  "Please enter your name:")
  597.    (set #enmail  "Please enter the mailserver (SMTP) of your Internet Service Provider:")
  598.    (set #helpme  (cat "The mailserver is mostly in a form like mail.myprovider.com. If your provider is for example "
  599.                       "online.no then the mailserver would most probably mail.online.no. If you`re not sure have a "
  600.                       "look at the configuration of your email software!"
  601.                  )
  602.    )                   
  603.    (set #myemail "Please enter your email address:")
  604.    (set #endomai "Please enter the domain of your Internet Service Provider:")
  605.    (set #helpdom "The domain of your provider is mostly the homepage without 'http://www.'. For example: If the homepage of your provider is http://www.dialup.no then the domain would most probably be dialup.no!")
  606.    (set #fndold  "NewInstaller is already installed on your system. What do you want to do now?")
  607.    (set #newcon  "configurate it new")
  608.    (set #nothing "exit")   
  609.    (set #insupd  "install update")
  610.    (set #fincon  "\nNewInstaller was configured successfully!")
  611.    (set #copyurl "\nInstalling openurl.library...")
  612.    (set #urlpref "Where shall the preferences for OpenUrl.library be copied to?")
  613.    (set #urlcon  "\nDo you want to configure OpenUrl.library now (advised) ?")
  614.    (set #copyide "\nInstalling identify.library...")
  615.    (set #msgide  "\nYou can get the full identify package from Aminet or from the homepage of the author Richard Körber!")
  616.    (set #copypop "\nInstalling Popport.mcc...")
  617.    (set #defdrws (cat "\nAs next you can select different drawers for different kinds of software "
  618.                       "For example for games: dh2:Games/. You can totally select 15 different kinds "
  619.                       "of software drawers. If you do not have a drawer for some kind of software, "
  620.                       "e.g. for developing tools, just select SYS: or something similar."
  621.                  )
  622.    )
  623.    (set #dedrw_a "Please select the drawer where your")
  624.    (set #dedrw_b "is/are installed!")
  625.    (set #defabiz "Business software")
  626.    (set #defcomm "Communications")
  627.    (set #defdemo "Graphics & Sound demos")
  628.    (set #defadev "Development software")
  629.    (set #defdisk "Disk & HD Tools")
  630.    (set #defdocs "Documents")
  631.    (set #defgame "Games")
  632.    (set #defagfx "Graphics software")
  633.    (set #defhard "Hardware Patches")
  634.    (set #defmisc "Miscellaneous")
  635.    (set #defmods "Music modules")
  636.    (set #defamus "Music software")
  637.    (set #defapix "Pictures")
  638.    (set #deftext "Text software")
  639.    (set #defutil "Utilities")  
  640. ))
  641.  
  642. (if (= lcale 15) (
  643.    (set #welcome "\nNewInstaller programýnýn\n\nkurulumuna hoþ geldiniz.\n\n(C) Copyright by Andreas Falkenhahn\n")
  644.    (set #copydoc "NewInstaller dökümantasyonu kopyalanýyor...")
  645.    (set #copyni  "NewInstaller çalýþtýrabilir dosya kopyalanýyor....")
  646.    (set #copymsg "Lütfen bekleyin...\n\nNewInstaller kuruluyor")
  647.    (set #fnshmsg "\nKurulum tamamlandý!\n\nNewInstaller`i CLI: NewInstaller`dan baþlatabilirsiniz!\n\nDökümana bir göz atýnýz lütfen")
  648.    (set #language "türkçe")
  649.    (set #copyreq "\nInstalling reqtools.library...")
  650.    (set #copygui "\nInstalling guigfx.library...")
  651.    (set #copyren "\nInstalling render.library...")
  652.    (set #chocpu  "\nPlease select your processor")
  653.    (set #reqmc   "\nGuigfx.library and render.library require at least a 68020 CPU!\nThese libraries won`t be installed on your syste - there some functions of NewInstaller are restricted!")
  654.    (set #bgfnd   "Do you want to retain your old background configuration or define them new?")
  655.    (set #useold  "retain")
  656.    (set #defnew  "define new")
  657.    (set #conbg   (cat "\nAs the next step the configuration program for the backgrounds will be started! "
  658.                       "You need to select three backgrounds, which NewInstaller will optionally use as "
  659.                       "default. You cannot quit the program until you`ve selected the three backgrounds!"
  660.                  )
  661.    )
  662.    (set #sndfnd  "Do you want to retain your old sound configuration or define them new?")
  663.    (set #consnd  (cat "\nAs the next step the configuration program for the sounds will be started! "
  664.                       "You need to select three sounds, which NewInstaller will optionally use as "
  665.                       "default. You cannot quit the program until you`ve selected the three sounds! "
  666.                       "\n\nPlease note that the maximum size of a sound is 128kb!" 
  667.                  )
  668.    )
  669.    (set #selins  "Please select the drawer where the Commodore Installer is stored in. Normally this is C:")
  670.    (set #sellha  "Please select the drawer where the LHA packer is stored in. Normally this is C:")
  671.    (set #sellzx  "Please select the drawer where the LZX packer is stored in. Normally this is C:")
  672.    (set #cfind   "The packer couldn`t be found in that drawer. Do you want to select a new drawer or do you want to renounce NewInstallers packersupport?")
  673.    (set #cofind  "\nThe Commodore Installer couldn`t be found in that drawer. Please select the right drawer! Without the Commodore Installer NewInstaller cannot work!")
  674.    (set #new     "select new drawer")
  675.    (set #dont    "don`t installer packer support")  
  676.    (set #inet    "\nIs your Amiga connected to Internet? If this is the case, you can use the new Internet features of NewInstaller!")
  677.    (set #wprog   "Which TCP/IP Stack do you use to connect to Internet?")
  678.    (set #other   "other program")
  679.    (set #otherin "\nNewInstaller does not support your TCP/IP Stack yet. That means you cannot use the Auto-Online feature. But if your stack does support bsdsocket.library you can use all other Internet functions of NewInstaller!")
  680.    (set #enname  "Please enter your name:")
  681.    (set #enmail  "Please enter the mailserver (SMTP) of your Internet Service Provider:")
  682.    (set #helpme  (cat "The mailserver is mostly in a form like mail.myprovider.com. If your provider is for example "
  683.                       "online.no then the mailserver would most probably mail.online.no. If you`re not sure have a "
  684.                       "look at the configuration of your email software!"
  685.                  )
  686.    )                   
  687.    (set #myemail "Please enter your email address:")
  688.    (set #endomai "Please enter the domain of your Internet Service Provider:")
  689.    (set #helpdom "The domain of your provider is mostly the homepage without 'http://www.'. For example: If the homepage of your provider is http://www.dialup.no then the domain would most probably be dialup.no!")
  690.    (set #fndold  "NewInstaller is already installed on your system. What do you want to do now?")
  691.    (set #newcon  "configurate it new")
  692.    (set #nothing "exit")   
  693.    (set #insupd  "install update")
  694.    (set #fincon  "\nNewInstaller was configured successfully!")
  695.    (set #copyurl "\nInstalling openurl.library...")
  696.    (set #urlpref "Where shall the preferences for OpenUrl.library be copied to?")
  697.    (set #urlcon  "\nDo you want to configure OpenUrl.library now (advised) ?")
  698.    (set #copyide "\nInstalling identify.library...")
  699.    (set #msgide  "\nYou can get the full identify package from Aminet or from the homepage of the author Richard Körber!")
  700.    (set #copypop "\nInstalling Popport.mcc...")
  701.    (set #defdrws (cat "\nAs next you can select different drawers for different kinds of software "
  702.                       "For example for games: dh2:Games/. You can totally select 15 different kinds "
  703.                       "of software drawers. If you do not have a drawer for some kind of software, "
  704.                       "e.g. for developing tools, just select SYS: or something similar."
  705.                  )
  706.    )
  707.    (set #dedrw_a "Please select the drawer where your")
  708.    (set #dedrw_b "is/are installed!")
  709.    (set #defabiz "Business software")
  710.    (set #defcomm "Communications")
  711.    (set #defdemo "Graphics & Sound demos")
  712.    (set #defadev "Development software")
  713.    (set #defdisk "Disk & HD Tools")
  714.    (set #defdocs "Documents")
  715.    (set #defgame "Games")
  716.    (set #defagfx "Graphics software")
  717.    (set #defhard "Hardware Patches")
  718.    (set #defmisc "Miscellaneous")
  719.    (set #defmods "Music modules")
  720.    (set #defamus "Music software")
  721.    (set #defapix "Pictures")
  722.    (set #deftext "Text software")
  723.    (set #defutil "Utilities")  
  724. ))
  725.  
  726. (if (= lcale 6) (
  727.    (set #welcome "\nBenvenuto nell'Installer di\n\nNewInstaller\n\n(C) Copyright di Andreas Falkenhahn\n")
  728.    (set #copydoc "Copio la documentazione di NewInstaller...")
  729.    (set #copyni  "Copio l'eseguibile di NewInstaller...")
  730.    (set #copymsg "Attendere, prego...\n\nInstallo NewInstaller")
  731.    (set #fnshmsg "\nL'installazione è andata a buon fine!\n\nPuoi avviare NewInstaller da linea di comando: 'NewInstaller'!\n\nLeggi la documentazione!")
  732.    (set #language "italiano")
  733.    (set #copyreq "\nInstallo reqtools.library...")
  734.    (set #copygui "\nInstallo guigfx.library...")
  735.    (set #copyren "\nInstallo render.library...")
  736.    (set #chocpu  "\nSeleziona il processore, prego")
  737.    (set #reqmc   "\nGuigfx.library e render.library necessitano almeno di un processore 68020!\nQueste librerie non saranno installate sul tuo sistema - perciò alcune funzioni di NewInstaller non saranno disponibili!")
  738.    (set #bgfnd   "Vuoi mantenere la tua precedente configurazione degli sfondi o vuoi ridefinirla?")
  739.    (set #useold  "mantieni")
  740.    (set #defnew  "ridefinisci")
  741.    (set #conbg   (cat "\nNel prossimo passo sarà avviato il programma di configurazione degli sfondi! "
  742.                       "Dovrai selezionare tre sfondi che NewInstaller utilizzerà come predefiniti. Non "
  743.                       "potrai uscire dal programma finché non avrai selezionato tutti e tre gli sfondi!"
  744.                  )
  745.    )
  746.    (set #sndfnd  "Vuoi mantenere la tua precedente configurazione dei suoni o vuoi ridefinirla?")
  747.    (set #consnd  (cat "\nNel prossimo passo sarà avviato il programma di configurazione dei suoni! "
  748.                       "Dovrai selezionare tre suoni che NewInstaller utilizzerà come predefiniti. Non "
  749.                       "potrai uscire dal programma finché non avrai selezionato tutti e tre i suoni! "
  750.                       "\n\nNOTA: la massima dimensione dei suoni è di 128Kb!"
  751.                  )
  752.    )
  753.    (set #selins  "Seleziona il cassetto che contiene l'Installer Commodore. Normalmente è C:")
  754.    (set #sellha  "Seleziona il cassetto che contiene l'archiviatore LHA. Normalmente è C:")
  755.    (set #sellzx  "Seleziona il cassetto che contiene l'archiviatore LZX. Normalmente è C:")
  756.    (set #cfind   "L'archiviatore non è stato trovato. Vuoi selezionare un altro cassetto o vuoi rinunciare al supporto degli archiviatori di NewInstaller?")
  757.    (set #cofind  "\nL'Installer Commodore non è stato trovato in questo cassetto. Seleziona il cassetto giusto! Senza Installer nemmeno NewInstaller può funzionare!")
  758.    (set #new     "seleziona nuovo cassetto")
  759.    (set #dont    "non installare supporto archiviatori")
  760.    (set #inet    "\nIl tuo Amiga è connesso ad Internet? In questo caso potrai utilizzare le nuove caratteristiche riguardanti Internet di NewInstaller!")
  761.    (set #wprog   "Quale programma TCP/IP usi per connetterti ad Internet?")
  762.    (set #other   "altro programma")
  763.    (set #otherin "\nNewInstaller non supporta ancora il tuo programma TCP/IP. Ciò significa che non puoi usare la caratteristica di collegamento automatico. Ma se il programma supporta la bsdsocket.library puoi usare tutte le altre funzioni riguardanti Internet di NewInstaller!")
  764.    (set #enname  "Inserisci il tuo nome:")
  765.    (set #enmail  "Inserisci il server di posta (SMTP) del tuo Internet Service Provider:")
  766.    (set #helpme  (cat "Il server di posta è il più delle volte in un formato come mail.mioprovider.com. Se il tuo provider è per esempio "
  767.                       "tin.it allora il server di posta molto probabilmente sarà mail.tin.it. Se non sei sicuro guarda nella "
  768.                       "configurazione del tuo programma di posta elettronica!"
  769.                  )
  770.    )                   
  771.    (set #myemail "Inserisci il tuo indirizzo email:")
  772.    (set #endomai "Inserisci il nome del dominio del tuo provider:")
  773.    (set #helpdom "Il nome del dominio il più delle volte corrisponde alla home page senza 'http://www.'. Ad esempio, se la home page del tuo provider è http://www.tin.it il dominio sarà molto probabilmente tin.it!")
  774.    (set #fndold  "NewInstaller è già installato nel tuo sistema. Cosa vuoi fare?")
  775.    (set #newcon  "riconfigurazione")
  776.    (set #nothing "esci")   
  777.    (set #insupd  "installa aggiornamento")
  778.    (set #fincon  "\nNewInstaller è stato configurato con successo!")
  779.    (set #copyurl "\nInstallo openurl.library...")
  780.    (set #urlpref "Dove devono essere copiate le preferenze di OpenUrl.library?")
  781.    (set #urlcon  "\nVuoi configurare OpenUrl.library ora (consigliato) ?")
  782.    (set #copyide "\nInstallo identify.library...")
  783.    (set #msgide  "\nPuoi trovare l'archivio completo della identify.library su Aminet o nella home page dell'autore Richard Körber!")
  784.    (set #copypop "\nInstallo Popport.mcc...")
  785.    (set #defdrws (cat "\nOra puoi selezionare diversi cassetti per i diversi tipi di software, "
  786.                       "Ad esempio per i giochi: Work:Giochi/. Puoi selezionare 15 diversi cassetti "
  787.                       "per le categorie di software. Se non hai un cassetto per alcuni tipi di software, "
  788.                       "ad es. per i programmi di sviluppo, seleziona semplicemente SYS: o qualcosa del genere."
  789.                  )
  790.    )
  791.    (set #dedrw_a "Seleziona il cassetto dove hai installato")
  792.    (set #dedrw_b "!")
  793.    (set #defabiz "i programmi commerciali")
  794.    (set #defcomm "i programmi di comunicazione")
  795.    (set #defdemo "le demo grafiche e sonore")
  796.    (set #defadev "i programmi per lo sviluppo")
  797.    (set #defdisk "le applicazioni per i dischi e l'HD")
  798.    (set #defdocs "i documenti")
  799.    (set #defgame "i giochi")
  800.    (set #defagfx "i programmi di grafica")
  801.    (set #defhard "i patch hardware")
  802.    (set #defmisc "programmi di vario genere")
  803.    (set #defmods "i moduli musicali")
  804.    (set #defamus "i programmi musicali")
  805.    (set #defapix "le immagini")
  806.    (set #deftext "i programmi di elaborazione testi")
  807.    (set #defutil "i programmi di utilità")  
  808. ))
  809.  
  810. (if (= lcale 5) (
  811.    (set #welcome "\nBienvenue à l'installeur de\n\nNewInstaller\n\n(C) Copyright par Andreas Falkenhahn\n")
  812.    (set #copydoc "Copie de la documentation de NewInstaller...")
  813.    (set #copyni  "Copie de l'exécutable de NewInstaller...")
  814.    (set #copymsg "Veuillez patienter...\n\nInstallation de NewInstaller")
  815.    (set #fnshmsg "\nInstallation terminée !\n\nVous pouvez lancer NewInstaller du CLI: NewInstaller\n\nLisez la documentation !")
  816.    (set #language "français")
  817.    (set #copyreq "\nInstallation de la reqtools.library...")
  818.    (set #copygui "\nInstallation de la guigfx.library...")
  819.    (set #copyren "\nInstallation de la render.library...")
  820.    (set #chocpu  "\nVeuillez sélectionner votre processeur")
  821.    (set #reqmc   "\nGuigfx.library et render.library requièrent au moins un 68020 !\nCes bibliothèques ne peuvent être installées sur votre système - Certaines fonctions de NewInstaller sont restreintes !")
  822.    (set #bgfnd   "Voulez-vous conserver votre ancienne configuration de fonds d'écran ou en définir une nouvelle ?")
  823.    (set #useold  "conserver")
  824.    (set #defnew  "définir une nouvelle")
  825.    (set #conbg   (cat "\nA l'étape suivante, le programme de configuration des fonds d'écran va être lancé ! "
  826.                       "Vous devrez sélectionner trois fonds d'écran, que NewInstaller utilisera éventuellement par défaut. "
  827.                       "Vous ne pouvez pas quitter le programme tant que vous n'avez pas sélectionné trois fonds d'écran !"
  828.                  )
  829.    )
  830.    (set #sndfnd  "Voulez-vous conserver votre ancienne configuration sonore ou en définir une nouvelle ?")
  831.    (set #consnd  (cat "\nA l'étape suivante, le programme de configuration des sons va être lancé ! "
  832.                       "Vous devrez sélectionner trois sons, que NewInstaller utilisera éventuellement par défaut. "
  833.                       "Vous ne pouvez pas quitter le programme tant que vous n'avez pas sélectionné trois sons ! "
  834.                       "\n\nVeuillez noter que la taille maximale pour un son est de 128 Ko !"
  835.                  )
  836.    )
  837.    (set #selins  "Veuillez sélectionner le répertoire où se trouve le programme \'Installer\' de Commodore. Normalement il s'agit de C:")
  838.    (set #sellha  "Veuillez sélectionner le répertoire où se trouve l'archiveur LHA. Normalement il s'agit de C:")
  839.    (set #sellzx  "Veuillez sélectionner le répertoire où se trouve l'archiveur LZX. Normalement il s'agit de C:")
  840.    (set #cfind   "L'archiveur n'a pas été trouvé dans ce répertoire. Voulez-vous sélectionner un nouveau répertoire ou voulez-vous renoncer à son utilisation dans NewInstaller ?")
  841.    (set #cofind  "\nL'Installer de Commodore n'a pas été trouvé dans ce répertoire. Sélectionnez le bon répertoire ! NewInstaller ne fonctionne pas sans l'Installer de Commodore !")
  842.    (set #new     "sélectionnez un autre répertoire")
  843.    (set #dont    "pas de fonctionnalité d'archivage")
  844.    (set #inet    "\nVotre Amiga est-il connecté à l'Internet ? Si c'est le cas, vous pouvez utiliser les nouvelles caractéristiques Internet de NewInstaller !")
  845.    (set #wprog   "Quel programme de gestion de pile TCP/IP utilisez-vous pour vous connecter à l'Internet ?")
  846.    (set #other   "autre programme")
  847.    (set #otherin "\nNewInstaller ne gère pas encore la pile TCP/IP. Cela signifie que vous ne pouvez pas utiliser la caractéristique de la prise de ligne automatiquement. Mais si votre pile gère la bsdsocket.library vous pouvez utiliser toutes les autres fonctions Internet de NewInstaller !")
  848.    (set #enname  "Veuillez entrer votre nom :")
  849.    (set #enmail  "Veuillez entrer le nom du serveur (SMTP) de votre fournisseur d'accès Internet :")
  850.    (set #helpme  (cat "Le nom du serveur est généralement sous la forme : mail.myprovider.com. Si par exemple, votre fournisseur "
  851.                       "est online.no alors le serveur de courrier sera probablement mail.online.no. Si vous n'en êtes pas sûr, "
  852.                       "vérifiez dans la configuration de votre programme de courrier !"
  853.                  )
  854.    )                   
  855.    (set #myemail "Veuillez entrer votre adresse de courrier électronique :")
  856.    (set #endomai "Veuillez entrer le nom de domaine de votre fournisseur d'accès :")
  857.    (set #helpdom "Le nom de domaine de votre fournisseur est le plus souvent le nom présent dans sa page d'accueil, sans le 'http://www.'. Par exemple : Si la page d'accueil de votre fournisseur est : http://www.dialup.no alors le nom de domaine sera très certainement dialup.no !")
  858.    (set #fndold  "NewInstaller est déjà installé sur votre système.\nQue souhaitez-vous faire ?")
  859.    (set #newcon  "effectuer une nouvelle configuration")
  860.    (set #nothing "quitter")
  861.    (set #insupd  "installer une mise à jour")
  862.    (set #fincon  "\nNewInstaller a été configuré avec succès !")
  863.    (set #copyurl "\nInstallation de la openurl.library...")
  864.    (set #urlpref "Où faut-il copier les préférences de l'OpenUrl.library ?")
  865.    (set #urlcon  "\nVoulez-vous configurer OpenUrl.library maintenant (conseillé) ?")
  866.    (set #copyide "\nInstallation de la identify.library...")
  867.    (set #msgide  "\nVous pouvez obtenir l'archive complète du programme \'identify\' sur Aminet ou sur la page d'accueil de l'auteur Richard Körber !")
  868.    (set #copypop "\nInstallation de Popport.mcc...")
  869.    (set #defdrws (cat "\nA l'étape suivante, vous pourrez sélectionner les répertoires pour différents programmes "
  870.                       "Par exemple pour les jeux : dh2:Games/. Vous pouvez choisir jusqu'à 15 répertoires pour "
  871.                       "différents types de programmes. Si vous n'avez pas de répertoire correspondant au type de logiciel demandé, "
  872.                       "ex : pour des outils de développement, sélectionnez simplement SYS: ou similaire."
  873.                  )
  874.    )
  875.    (set #dedrw_a "Veuillez préciser où les éléments suivants :\n")
  876.    (set #dedrw_b "\nse trouvent !")
  877.    (set #defabiz "Programmes professionnels")
  878.    (set #defcomm "Communications")
  879.    (set #defdemo "Graphiques & Sons")
  880.    (set #defadev "Programmes de développement")
  881.    (set #defdisk "Outils disque & disquettes")
  882.    (set #defdocs "Documents")
  883.    (set #defgame "Jeux")
  884.    (set #defagfx "Programmes de dessin")
  885.    (set #defhard "Patches systèmes")
  886.    (set #defmisc "Divers")
  887.    (set #defmods "Modules de musique")
  888.    (set #defamus "Programmes de musique")
  889.    (set #defapix "Images")
  890.    (set #deftext "Traitements de texte")
  891.    (set #defutil "Utilitaires")
  892. ))
  893.  
  894. (if (= lcale 3) (
  895.    (set #welcome "\nWelcome to the Installer for\n\nNewInstaller\n\n(C) Copyright by Andreas Falkenhahn\n")
  896.    (set #copydoc "Copying NewInstaller documentation...")
  897.    (set #copyni  "Copying NewInstaller executable...")
  898.    (set #copymsg "Please wait...\n\nInstalling NewInstaller")
  899.    (set #fnshmsg "\nInstallation succeeded!\n\nYou can start NewInstaller by CLI: NewInstaller!\n\nHave a look at the documentation!")  
  900.    (set #language "english")
  901.    (set #copyreq "\nInstalling reqtools.library...")
  902.    (set #copygui "\nInstalling guigfx.library...")
  903.    (set #copyren "\nInstalling render.library...")
  904.    (set #chocpu  "\nPlease select your processor")
  905.    (set #reqmc   "\nGuigfx.library and render.library require at least a 68020 CPU!\nThese libraries won`t be installed on your system - there some functions of NewInstaller are restricted!")
  906.    (set #bgfnd   "Do you want to retain your old background configuration or define them new?")
  907.    (set #useold  "retain")
  908.    (set #defnew  "define new")
  909.    (set #conbg   (cat "\nAs the next step the configuration program for the backgrounds will be started! "
  910.                       "You need to select three backgrounds, which NewInstaller will optionally use as "
  911.                       "default. You cannot quit the program until you`ve selected the three backgrounds!"
  912.                  )
  913.    )
  914.    (set #sndfnd  "Do you want to retain your old sound configuration or define them new?")
  915.    (set #consnd  (cat "\nAs the next step the configuration program for the sounds will be started! "
  916.                       "You need to select three sounds, which NewInstaller will optionally use as "
  917.                       "default. You cannot quit the program until you`ve selected the three sounds! "
  918.                       "\n\nPlease note that the maximum size of a sound is 128kb!" 
  919.                  )
  920.    )
  921.    (set #selins  "Please select the drawer where the Commodore Installer is stored in. Normally this is C:")
  922.    (set #sellha  "Please select the drawer where the LHA packer is stored in. Normally this is C:")
  923.    (set #sellzx  "Please select the drawer where the LZX packer is stored in. Normally this is C:")
  924.    (set #cfind   "The packer couldn`t be found in that drawer. Do you want to select a new drawer or do you want to renounce NewInstallers packersupport?")
  925.    (set #cofind  "\nThe Commodore Installer couldn`t be found in that drawer. Please select the right drawer! Without the Commodore Installer NewInstaller cannot work!")
  926.    (set #new     "select new drawer")
  927.    (set #dont    "don`t installer packer support")  
  928.    (set #inet    "\nIs your Amiga connected to Internet? If this is the case, you can use the new Internet features of NewInstaller!")
  929.    (set #wprog   "Which TCP/IP Stack do you use to connect to Internet?")
  930.    (set #other   "other program")
  931.    (set #otherin "\nNewInstaller does not support your TCP/IP Stack yet. That means you cannot use the Auto-Online feature. But if your stack does support bsdsocket.library you can use all other Internet functions of NewInstaller!")
  932.    (set #enname  "Please enter your name:")
  933.    (set #enmail  "Please enter the mailserver (SMTP) of your Internet Service Provider:")
  934.    (set #helpme  (cat "The mailserver is mostly in a form like mail.myprovider.com. If your provider is for example "
  935.                       "online.no then the mailserver would most probably mail.online.no. If you`re not sure have a "
  936.                       "look at the configuration of your email software!"
  937.                  )
  938.    )                   
  939.    (set #myemail "Please enter your email address:")
  940.    (set #endomai "Please enter the domain of your Internet Service Provider:")
  941.    (set #helpdom "The domain of your provider is mostly the homepage without 'http://www.'. For example: If the homepage of your provider is http://www.dialup.no then the domain would most probably be dialup.no!")
  942.    (set #fndold  "NewInstaller is already installed on your system. What do you want to do now?")
  943.    (set #newcon  "configurate it new")
  944.    (set #nothing "exit")   
  945.    (set #insupd  "install update")
  946.    (set #fincon  "\nNewInstaller was configured successfully!")
  947.    (set #copyurl "\nInstalling openurl.library...")
  948.    (set #urlpref "Where shall the preferences for OpenUrl.library be copied to?")
  949.    (set #urlcon  "\nDo you want to configure OpenUrl.library now (advised) ?")
  950.    (set #copyide "\nInstalling identify.library...")
  951.    (set #msgide  "\nYou can get the full identify package from Aminet or from the homepage of the author Richard Körber!")
  952.    (set #copypop "\nInstalling Popport.mcc...")
  953.    (set #defdrws (cat "\nAs next you can select different drawers for different kinds of software "
  954.                       "For example for games: dh2:Games/. You can totally select 15 different kinds "
  955.                       "of software drawers. If you do not have a drawer for some kind of software, "
  956.                       "e.g. for developing tools, just select SYS: or something similar."
  957.                  )
  958.    )
  959.    (set #dedrw_a "Please select the drawer where your")
  960.    (set #dedrw_b "is/are installed!")
  961.    (set #defabiz "Business software")
  962.    (set #defcomm "Communications")
  963.    (set #defdemo "Graphics & Sound demos")
  964.    (set #defadev "Development software")
  965.    (set #defdisk "Disk & HD Tools")
  966.    (set #defdocs "Documents")
  967.    (set #defgame "Games")
  968.    (set #defagfx "Graphics software")
  969.    (set #defhard "Hardware Patches")
  970.    (set #defmisc "Miscellaneous")
  971.    (set #defmods "Music modules")
  972.    (set #defamus "Music software")
  973.    (set #defapix "Pictures")
  974.    (set #deftext "Text software")
  975.    (set #defutil "Utilities")  
  976. ))
  977.  
  978. (if (= lcale 10) (
  979.    (set #welcome "\nWelcome to the Installer for\n\nNewInstaller\n\n(C) Copyright by Andreas Falkenhahn\n\n\nSorry, there`s no polish translation of the install script. But a catalog translation was done!")
  980.    (set #copydoc "Copying NewInstaller documentation...")
  981.    (set #copyni  "Copying NewInstaller executable...")
  982.    (set #copymsg "Please wait...\n\nInstalling NewInstaller")
  983.    (set #fnshmsg "\nInstallation succeeded!\n\nYou can start NewInstaller by CLI: NewInstaller!\n\nHave a look at the documentation!")  
  984.    (set #language "polski")
  985.    (set #copyreq "\nInstalling reqtools.library...")
  986.    (set #copygui "\nInstalling guigfx.library...")
  987.    (set #copyren "\nInstalling render.library...")
  988.    (set #chocpu  "\nPlease select your processor")
  989.    (set #reqmc   "\nGuigfx.library and render.library require at least a 68020 CPU!\nThese libraries won`t be installed on your syste - there some functions of NewInstaller are restricted!")
  990.    (set #bgfnd   "Do you want to retain your old background configuration or define them new?")
  991.    (set #useold  "retain")
  992.    (set #defnew  "define new")
  993.    (set #conbg   (cat "\nAs the next step the configuration program for the backgrounds will be started! "
  994.                       "You need to select three backgrounds, which NewInstaller will optionally use as "
  995.                       "default. You cannot quit the program until you`ve selected the three backgrounds!"
  996.                  )
  997.    )
  998.    (set #sndfnd  "Do you want to retain your old sound configuration or define them new?")
  999.    (set #consnd  (cat "\nAs the next step the configuration program for the sounds will be started! "
  1000.                       "You need to select three sounds, which NewInstaller will optionally use as "
  1001.                       "default. You cannot quit the program until you`ve selected the three sounds! "
  1002.                       "\n\nPlease note that the maximum size of a sound is 128kb!" 
  1003.                  )
  1004.    )
  1005.    (set #selins  "Please select the drawer where the Commodore Installer is stored in. Normally this is C:")
  1006.    (set #sellha  "Please select the drawer where the LHA packer is stored in. Normally this is C:")
  1007.    (set #sellzx  "Please select the drawer where the LZX packer is stored in. Normally this is C:")
  1008.    (set #cfind   "The packer couldn`t be found in that drawer. Do you want to select a new drawer or do you want to renounce NewInstallers packersupport?")
  1009.    (set #cofind  "\nThe Commodore Installer couldn`t be found in that drawer. Please select the right drawer! Without the Commodore Installer NewInstaller cannot work!")
  1010.    (set #new     "select new drawer")
  1011.    (set #dont    "don`t installer packer support")  
  1012.    (set #inet    "\nIs your Amiga connected to Internet? If this is the case, you can use the new Internet features of NewInstaller!")
  1013.    (set #wprog   "Which TCP/IP Stack do you use to connect to Internet?")
  1014.    (set #other   "other program")
  1015.    (set #otherin "\nNewInstaller does not support your TCP/IP Stack yet. That means you cannot use the Auto-Online feature. But if your stack does support bsdsocket.library you can use all other Internet functions of NewInstaller!")
  1016.    (set #enname  "Please enter your name:")
  1017.    (set #enmail  "Please enter the mailserver (SMTP) of your Internet Service Provider:")
  1018.    (set #helpme  (cat "The mailserver is mostly in a form like mail.myprovider.com. If your provider is for example "
  1019.                       "online.no then the mailserver would most probably mail.online.no. If you`re not sure have a "
  1020.                       "look at the configuration of your email software!"
  1021.                  )
  1022.    )                   
  1023.    (set #myemail "Please enter your email address:")
  1024.    (set #endomai "Please enter the domain of your Internet Service Provider:")
  1025.    (set #helpdom "The domain of your provider is mostly the homepage without 'http://www.'. For example: If the homepage of your provider is http://www.dialup.no then the domain would most probably be dialup.no!")
  1026.    (set #fndold  "NewInstaller is already installed on your system. What do you want to do now?")
  1027.    (set #newcon  "configurate it new")
  1028.    (set #nothing "exit")   
  1029.    (set #insupd  "install update")
  1030.    (set #fincon  "\nNewInstaller was configured successfully!")
  1031.    (set #copyurl "\nInstalling openurl.library...")
  1032.    (set #urlpref "Where shall the preferences for OpenUrl.library be copied to?")
  1033.    (set #urlcon  "\nDo you want to configure OpenUrl.library now (advised) ?")
  1034.    (set #copyide "\nInstalling identify.library...")
  1035.    (set #msgide  "\nYou can get the full identify package from Aminet or from the homepage of the author Richard Körber!")
  1036.    (set #copypop "\nInstalling Popport.mcc...")
  1037.    (set #defdrws (cat "\nAs next you can select different drawers for different kinds of software "
  1038.                       "For example for games: dh2:Games/. You can totally select 15 different kinds "
  1039.                       "of software drawers. If you do not have a drawer for some kind of software, "
  1040.                       "e.g. for developing tools, just select SYS: or something similar."
  1041.                  )
  1042.    )
  1043.    (set #dedrw_a "Please select the drawer where your")
  1044.    (set #dedrw_b "is/are installed!")
  1045.    (set #defabiz "Business software")
  1046.    (set #defcomm "Communications")
  1047.    (set #defdemo "Graphics & Sound demos")
  1048.    (set #defadev "Development software")
  1049.    (set #defdisk "Disk & HD Tools")
  1050.    (set #defdocs "Documents")
  1051.    (set #defgame "Games")
  1052.    (set #defagfx "Graphics software")
  1053.    (set #defhard "Hardware Patches")
  1054.    (set #defmisc "Miscellaneous")
  1055.    (set #defmods "Music modules")
  1056.    (set #defamus "Music software")
  1057.    (set #defapix "Pictures")
  1058.    (set #deftext "Text software")
  1059.    (set #defutil "Utilities")  
  1060. ))
  1061.  
  1062. (if (= lcale 0) (
  1063.    (set #welcome "\nVÉtÁm vÁs u instalace programu\n\nNewInstaller\n\n(C) Copyright - Andreas Falkenhahn\n")
  1064.    (set #copydoc "KopÉruje se dokumentace k NewInstalleru...")
  1065.    (set #copyni  "KopÉruje se program NewInstaller...")
  1066.    (set #copymsg "ProsÉm poÃkejte...\n\nInstaluje se NewInstaller")
  1067.    (set #fnshmsg "\nInstalace v poÒÁdku!\n\nMÊÚete spustit NewInstaller v CLI: NewInstaller!\n\nPodrobnosti se doÃtete v dokumentaci!")
  1068.    (set #language "ÃeÓtina")
  1069.    (set #copyreq "\nInstaluje se reqtools.library...")
  1070.    (set #copygui "\nInstaluje se guigfx.library...")
  1071.    (set #copyren "\nInstaluje se render.library...")
  1072.    (set #chocpu  "\nProsÉm vyberte typ procesoru")
  1073.    (set #reqmc   "\nGuigfx.library a render.library vyÚaduje minimÁlnÅ procesor 68020!\nTyto knihovny nemusejÉ bÙt nainstalovÁny - nÅkter× funkce NewInstalleru vÓak budou omezen×!")
  1074.    (set #bgfnd   "Chcete zachovat starou konfiguraci pozadÉ nebo definovat novou?")
  1075.    (set #useold  "Zachovat")
  1076.    (set #defnew  "Definovat novou")
  1077.    (set #conbg   (cat "\nJako dalÓÉ krok bude spuÓtÅn konfiguraÃnÉ program pozadÉ! "
  1078.                       "Je potÒeba vybrat tÒi pozadÉ, kter× NewInstaller bude pouÚÉvat jako "
  1079.                       "zÁkladnÉ. Nelze ukonÃit program do t× doby, dokud nezvolÉte tÒi pozadÉ!"
  1080.                  )
  1081.    )
  1082.    (set #sndfnd  "Chcete zachovat starou konfiguaci zvuku nebo definovat novou?")
  1083.    (set #consnd  (cat "\nJako dalÓÉ krok bude spuÓtÅn konfiguraÃnÉ program pro zvuky! "
  1084.                       "Je potÒeba vybrat tÒi zvuky, kter× NewInstaller bude pouÚÉvat jako "
  1085.                       "zÁkladnÉ. Nelze ukonÃit program do t× doby, dokud nezvolÉte tÒi zvuky! "
  1086.                       "\n\nProsÉm, berte na vÅdomÉ, Úe maximÁlnÉ velikost zvukov×ho souboru je 128 kB!" 
  1087.                  )
  1088.    )
  1089.    (set #selins  "ProsÉm vyberte adresÁÒ, kde se nachÁzÉ originÁlnÉ Commodore Installer. BÅÚnÅ je v C:")
  1090.    (set #sellha  "ProsÉm vyberte adresÁÒ, kde se nachÁzÉ komprimÁtor LHA. BÅÚnÅ je v C:")
  1091.    (set #sellzx  "ProsÉm vyberte adresÁÒ, kde se nachÁzÉ komprimÁtor LZX. BÅÚnÅ je v C:")
  1092.    (set #cfind   "V tomto adresÁÒi nebyl komprimÁtor nalezen. Chcete vybrat novÙ adresÁÒ nebo se zÒeknete podpory komprimace v NewInstalleru?")
  1093.    (set #cofind  "\nV tomto adresÁÒi nebyl nalezen originÁlnÉ Commodore Installer. ProsÉm zvolte sprÁvnÙ adresÁÒ! Bez originÁlnÉho Commodore Installeru nebude NewInstaller pracovat!")
  1094.    (set #new     "Vybrat novÙ adresÁÒ")
  1095.    (set #dont    "Neinstalovat podporu komprimace")  
  1096.    (set #inet    "\nJe vaÓe Amiga pÒipojenÁ k Internetu? JestliÚe ano, mÊÚete pouÚÉt nov× Internetov× vlastnosti NewInstalleru!")
  1097.    (set #wprog   "KterÙ TCP/IP klient pouÚÉvÁte pro pÒipojenÉ k Internetu?")
  1098.    (set #other   "JinÙ program")
  1099.    (set #otherin "\nNewInstaller zatÉm nepodporuje TCP/IP klient, kterÙ mÁte. To znamenÁ, Úe nemÊÚete pouÚÉt vlastnost Auto-Online. Ale, jestliÚe tento klient podporuje bsdsocket.library, mÊÚete vyuÚÉt veÓker× Internetov× funkce NewInstalleru!")
  1100.    (set #enname  "ProsÉm zadejte sv× jm×no:")
  1101.    (set #enmail  "ProsÉm zadejte nÁzev poÓtovnÉho serveru (SMTP) poskytovatele pÒipojenÉ k internetu (ISP):")
  1102.    (set #helpme  (cat "NÁzev poÓtovnÉho server je obvykle ve tvaru mail.mujprovajdr.com. JestliÚe je poskytoval napÒ. "
  1103.                       "online.no, pak nÁzev mailserveru by mÅl bÙt mail.online.no. JestliÚe si nejste jisti, podÉvejte "
  1104.                       "se do konfigurace programu pro E-mail!"
  1105.                  )
  1106.    )                   
  1107.    (set #myemail "ProsÉm zadejte emailovou adresu:")
  1108.    (set #endomai "ProsÉm zadejte dom×nu sv×ho poskytovatele (ISP):")
  1109.    (set #helpdom "Dom×na poskytovatele je vÅtÓinou nÁzev domovsk× strÁnky bez 'http://www.'. NapÒ.: je-li domovskÁ strÁnka vaÓeho poskytovatele http://www.dialup.no, tak dom×na by mÅla bÙt dialup.no!")
  1110.    (set #fndold  "NewInstaller uÚ je ve vaÓem syst×mu nainstalovÁn. Co chcete nynÉ udÅlat?")
  1111.    (set #newcon  "Nakonfigurovat ho")
  1112.    (set #nothing "UkonÃit")   
  1113.    (set #insupd  "Instalovat aktualizaci")
  1114.    (set #fincon  "\nNewInstaller byl sprÁvnÅ nakonfigurovÁn!")
  1115.    (set #copyurl "\nInstaluje se openurl.library...")
  1116.    (set #urlpref "Kam se majÉ nakopÉrovat konfiguraÃnÉ soubory pro OpenUrl.library?")
  1117.    (set #urlcon  "\nChce nynÉ konfigurovat OpenUrl.library (ÕmyslnÅ) ?")
  1118.    (set #copyide "\nInstaluje se identify.library...")
  1119.    (set #msgide  "\nZ Aminetu mÊÚete zÉskat kompletnÉ balÉk identify nebo tak× z domovsk× strÁnky autora Richarda KÍrbera!")
  1120.    (set #copypop "\nInstaluje se Popport.mcc...")
  1121.    (set #defdrws (cat "\nJako dalÓÉ mÊÚete vybrat rÊzn× adresÁÒe pro rÊzn× typy programÊ "
  1122.                       "NapÒÉklad pro hry DH2:Games/. MÊÚete vybrat aÚ 15 rÊznÙch typÊ "
  1123.                       "adresÁÒÊ pro programy. JestliÚe nemÁte adresÁÒ pro nÅkter× typy programÊ, "
  1124.                       "napÒ. pro vÙvojov× nÁstroje, zvolte SYS: nebo nÅco podobn×ho."
  1125.                  )
  1126.    )
  1127.    (set #dedrw_a "ProsÉm zvolte adresÁÒ, do kter×ho chcete")
  1128.    (set #dedrw_b "nainstalovat...")
  1129.    (set #defabiz "ObchodnÉ programy")
  1130.    (set #defcomm "Komunikace")
  1131.    (set #defdemo "GrafickÁ a hudebnÉ dema")
  1132.    (set #defadev "VÙvojov× nÁstroje")
  1133.    (set #defdisk "Diskov× a harddiskov× nÁstroje")
  1134.    (set #defdocs "Dokumenty")
  1135.    (set #defgame "Hry")
  1136.    (set #defagfx "Grafick× programy")
  1137.    (set #defhard "Hardwarov× Õpravy")
  1138.    (set #defmisc "OstatnÉ programy")
  1139.    (set #defmods "HudebnÉ moduly")
  1140.    (set #defamus "HudebnÉ programy")
  1141.    (set #defapix "ObrÁzky")
  1142.    (set #deftext "Textov× programy")
  1143.    (set #defutil "Utility")  
  1144. ))
  1145.  
  1146. (if (= lcale 2) (
  1147.    (set #welcome "\nWillkommen zum Installer für\n\nNewInstaller\n\n(C) Copyright by Andreas Falkenhahn\n")
  1148.    (set #copydoc "Kopiere NewInstaller Dokumentation...")
  1149.    (set #copyni  "Kopiere das Programm NewInstaller...")
  1150.    (set #copymsg "Bitte warten...\n\nInstalliere NewInstaller")
  1151.    (set #fnshmsg "\nInstallation war erfolgreich!\n\nSie können NewInstaller über CLI NewInstaller starten!\n\nSchauen Sie mal in die Dokumentation!")
  1152.    (set #language "deutsch")
  1153.    (set #copyreq "\nInstalliere reqtools.library...")
  1154.    (set #copygui "\nInstalliere guigfx.library....")
  1155.    (set #copyren "\nInstalliere render.library....")
  1156.    (set #chocpu  "Bitte wählen Sie Ihren Prozessor aus")
  1157.    (set #reqmc   "\nGuigfx.library und render.library benötigen mindestens einen 68020 Prozessor!\nDiese Libraries werden nicht auf Ihrem System installiert, deshalb sind einige Funktionen des NewInstaller eingeschränkt!")
  1158.    (set #bgfnd   "Wollen Sie Ihre alten Hintergrundvorgaben beibehalten oder neue definieren?")
  1159.    (set #useold  "beibehalten")
  1160.    (set #defnew  "neu definieren")
  1161.    (set #conbg   (cat "\nAls nächstes wird das Konfigurationsprogramm für die Hintergründe gestartet! " 
  1162.                       "Sie müssen insgesamt drei Hintergründe auswählen, die NewInstaller dann optional "
  1163.                       "als Vorgabe verwendet. Erst wenn Sie alle drei Hintergründe ausgewählt haben, "
  1164.                       "können Sie das Programm verlassen!"
  1165.                  )
  1166.    )
  1167.    (set #sndfnd  "Wollen Sie Ihre alten Soundvorgaben beibehalten oder neue definieren?")
  1168.    (set #consnd  (cat "\nAls nächstes wird das Konfigurationsprogramm für die Sounds gestartet! Sie müssen "
  1169.                        "insgesamt drei Sounds auswählen, die NewInstaller dann optional als Vorgabe "
  1170.                        "verwendet. Erst wenn Sie alle drei Sounds ausgewählt haben, können Sie das "
  1171.                        "Programm verlassen!\n\nBeachten Sie bitte, dass die maximale Größe für eine "
  1172.                        "Sounddatei 128kb beträgt!"
  1173.                  )
  1174.    )
  1175.    (set #selins  "Bitte wählen Sie das Verzeichnis aus, indem sich der Commodore Installer befindet. Dies ist normalerweise C:")
  1176.    (set #sellha  "Bitte wählen Sie das Verzeichnis aus, indem sich der LHA Packer befindet. Dies ist normalerweise C:")
  1177.    (set #sellzx  "Bitte wählen Sie das Verzeichnis aus, indem sich der LZX Packer befindet. Dies ist normalerweise C:")
  1178.    (set #cfind   "Der Packer konnte in diesem Verzeichnis nicht gefunden werden, möchten Sie ein neues auswählen oder auf die Packerfunktion in NewInstaller verzichten?")
  1179.    (set #cofind  "\nDer Commodore Installer konnte in diesem Verzeichnis nicht gefunden werden, bitte wählen Sie das richtige Verzeichnis aus! Ohne den Commodore Installer kann NewInstaller nicht arbeiten!")
  1180.    (set #new     "neues Verzeichnis wählen")
  1181.    (set #dont    "keine Packerunterstützung installieren")  
  1182.    (set #inet    "\nSind Sie mit Ihrem Amiga im Internet? Wenn ja, können Sie auch die neuen Internetfunktionen von NewInstaller benutzen!")
  1183.    (set #wprog   "Welchen TCP/IP Stack benutzen Sie um ins Internet zu gelangen?")
  1184.    (set #other   "anderes Programm")
  1185.    (set #otherin "\nMomentan unterstützt NewInstaller Ihren TCP/IP noch nicht, das heißt, dass die Auto-Online Funktion gesperrt ist. Wenn Ihr Programm allerdings die bsdsocket.library unterstützt können Sie alle anderen Internetfunktionen benutzen!")
  1186.    (set #enname  "Bitte geben Sie Ihren Namen ein:")
  1187.    (set #enmail  "Bitte geben Sie den Namen des Mailserver (SMTP) Ihres Providers ein:")
  1188.    (set #helpme  (cat "Der Mailserver ist meistens in der Form mail.meinprovider.de. Sollte Ihr Provider z.B. "
  1189.                       "nacamar.de sein, so würde der Mailserver höchstwahrscheinlich mail.nacamar.de "
  1190.                       "heißen. Wenn Sie sich nicht sicher sind, schauen Sie einfach in der Konfiguration "
  1191.                       "Ihres Email Programms nach!"
  1192.                  )
  1193.    )
  1194.    (set #myemail "Bitte geben Sie Ihre email Adresse ein:")
  1195.    (set #endomai "Bitte geben Sie den Domain Ihres Providers ein:")
  1196.    (set #helpdom "Der Domain Ihres Providers ist meistens die Homepage ohne 'http://www.'! Hat Ihr Provider die Homepage http://www.meinprovider.de ist der Domain höchstwahrscheinlich meinprovider.de!")
  1197.    (set #fndold  "NewInstaller wurde schon auf Ihrem System installiert. Was wollen Sie jetzt machen?")
  1198.    (set #newcon  "neu konfigurieren")
  1199.    (set #nothing "verlassen")   
  1200.    (set #insupd  "Update installieren")
  1201.    (set #fincon  "\nNewInstaller wurde erfolgreich konfiguriert!")
  1202.    (set #copyurl "\nInstalliere openurl.library...")
  1203.    (set #urlpref "Wohin soll das Voreinstellerprogramm für die OpenUrl.library kopiert werden?")
  1204.    (set #urlcon  "\nWollen Sie die OpenUrl.library jetzt konfigurieren (empfohlen) ?")
  1205.    (set #copyide "\nInstalliere identify.library...")
  1206.    (set #msgide  "\nSie können das komplette Identify Paket aus dem Aminet bekommen oder von der Homepage des Autors Richard Körber!")
  1207.    (set #copypop "\nInstalliere Popport.mcc...")
  1208.    (set #defdrws (cat "\nAls nächstes können Sie für verschiedene Arten von Software, verschiedene "
  1209.                       "Verzeichnisse auf Ihrer Festplatte auswählen. Zum Beispiel für Spiele: "
  1210.                       "dh2:Games/. Sie können für insgesamt 15 Arten von Software Verzeichnisse "
  1211.                       "festlegen. Sollten Sie für eine bestimmte Art von Software kein eigenes "
  1212.                       "Verzeichnis auf Ihrer Festplatte haben, z.B. für Entwicklungssoftware, "
  1213.                       "dann wählen Sie doch einfach SYS: aus."
  1214.                  )
  1215.    )  
  1216.    (set #dedrw_a "Bitte suchen Sie das Verzeichnis aus, indem Ihre")
  1217.    (set #dedrw_b "installiert ist/sind!")
  1218.    (set #defabiz "Geschäftssoftware")
  1219.    (set #defcomm "Kommunikationssoftware")
  1220.    (set #defdemo "Demos")
  1221.    (set #defadev "Entwicklungssoftware")
  1222.    (set #defdisk "Harddisk Tools")
  1223.    (set #defdocs "Dokumente")
  1224.    (set #defgame "Spiele")
  1225.    (set #defagfx "Grafiksoftware")
  1226.    (set #defhard "Hardware Patches")
  1227.    (set #defmisc "diverse Software")
  1228.    (set #defmods "Musikmodule")
  1229.    (set #defamus "Musiksoftware")
  1230.    (set #defapix "Bilder")
  1231.    (set #deftext "Textsoftware")
  1232.    (set #defutil "Utilities")  
  1233. ))
  1234.  
  1235. (if (= lcale 7) (
  1236.    (set #welcome "\nÜdvözlöm a\n\nNewInstaller\n\n telepítõjében! (C) Szerzõi jogok: Andreas Falkenhahn\n")
  1237.    (set #copydoc "A NewInstaller dokumentáció másolása...")
  1238.    (set #copyni  "A NewInstaller program másolása...")
  1239.    (set #copymsg "Kérem várjon...\n\nTelepítem a NewInstaller-t")
  1240.    (set #fnshmsg "\nA telepítés sikeresen befejezõdött!\n\nA NewInstaller-t CLI:-bõl a NewInstaller paranccsal indíthatja!\n\nNézze meg a dokumentációt is!")  
  1241.    (set #language "magyar")
  1242.    (set #copyreq "\nInstalling reqtools.library...")
  1243.    (set #copygui "\nInstalling guigfx.library...")
  1244.    (set #copyren "\nInstalling render.library...")
  1245.    (set #chocpu  "\nPlease select your processor")
  1246.    (set #reqmc   "\nGuigfx.library and render.library require at least a 68020 CPU!\nThese libraries won`t be installed on your syste - there some functions of NewInstaller are restricted!")
  1247.    (set #bgfnd   "Do you want to retain your old background configuration or define them new?")
  1248.    (set #useold  "retain")
  1249.    (set #defnew  "define new")
  1250.    (set #conbg   (cat "\nAs the next step the configuration program for the backgrounds will be started! "
  1251.                       "You need to select three backgrounds, which NewInstaller will optionally use as "
  1252.                       "default. You cannot quit the program until you`ve selected the three backgrounds!"
  1253.                  )
  1254.    )
  1255.    (set #sndfnd  "Do you want to retain your old sound configuration or define them new?")
  1256.    (set #consnd  (cat "\nAs the next step the configuration program for the sounds will be started! "
  1257.                       "You need to select three sounds, which NewInstaller will optionally use as "
  1258.                       "default. You cannot quit the program until you`ve selected the three sounds! "
  1259.                       "\n\nPlease note that the maximum size of a sound is 128kb!" 
  1260.                  )
  1261.    )
  1262.    (set #selins  "Please select the drawer where the Commodore Installer is stored in. Normally this is C:")
  1263.    (set #sellha  "Please select the drawer where the LHA packer is stored in. Normally this is C:")
  1264.    (set #sellzx  "Please select the drawer where the LZX packer is stored in. Normally this is C:")
  1265.    (set #cfind   "The packer couldn`t be found in that drawer. Do you want to select a new drawer or do you want to renounce NewInstallers packersupport?")
  1266.    (set #cofind  "\nThe Commodore Installer couldn`t be found in that drawer. Please select the right drawer! Without the Commodore Installer NewInstaller cannot work!")
  1267.    (set #new     "select new drawer")
  1268.    (set #dont    "don`t installer packer support")  
  1269.    (set #inet    "\nIs your Amiga connected to Internet? If this is the case, you can use the new Internet features of NewInstaller!")
  1270.    (set #wprog   "Which TCP/IP Stack do you use to connect to Internet?")
  1271.    (set #other   "other program")
  1272.    (set #otherin "\nNewInstaller does not support your TCP/IP Stack yet. That means you cannot use the Auto-Online feature. But if your stack does support bsdsocket.library you can use all other Internet functions of NewInstaller!")
  1273.    (set #enname  "Please enter your name:")
  1274.    (set #enmail  "Please enter the mailserver (SMTP) of your Internet Service Provider:")
  1275.    (set #helpme  (cat "The mailserver is mostly in a form like mail.myprovider.com. If your provider is for example "
  1276.                       "online.no then the mailserver would most probably mail.online.no. If you`re not sure have a "
  1277.                       "look at the configuration of your email software!"
  1278.                  )
  1279.    )                   
  1280.    (set #myemail "Please enter your email address:")
  1281.    (set #endomai "Please enter the domain of your Internet Service Provider:")
  1282.    (set #helpdom "The domain of your provider is mostly the homepage without 'http://www.'. For example: If the homepage of your provider is http://www.dialup.no then the domain would most probably be dialup.no!")
  1283.    (set #fndold  "NewInstaller is already installed on your system. What do you want to do now?")
  1284.    (set #newcon  "configurate it new")
  1285.    (set #nothing "exit")   
  1286.    (set #insupd  "install update")
  1287.    (set #fincon  "\nNewInstaller was configured successfully!")
  1288.    (set #copyurl "\nInstalling openurl.library...")
  1289.    (set #urlpref "Where shall the preferences for OpenUrl.library be copied to?")
  1290.    (set #urlcon  "\nDo you want to configure OpenUrl.library now (advised) ?")
  1291.    (set #copyide "\nInstalling identify.library...")
  1292.    (set #msgide  "\nYou can get the full identify package from Aminet or from the homepage of the author Richard Körber!")
  1293.    (set #copypop "\nInstalling Popport.mcc...")
  1294.    (set #defdrws (cat "\nAs next you can select different drawers for different kinds of software "
  1295.                       "For example for games: dh2:Games/. You can totally select 15 different kinds "
  1296.                       "of software drawers. If you do not have a drawer for some kind of software, "
  1297.                       "e.g. for developing tools, just select SYS: or something similar."
  1298.                  )
  1299.    )
  1300.    (set #dedrw_a "Please select the drawer where your")
  1301.    (set #dedrw_b "is/are installed!")
  1302.    (set #defabiz "Business software")
  1303.    (set #defcomm "Communications")
  1304.    (set #defdemo "Graphics & Sound demos")
  1305.    (set #defadev "Development software")
  1306.    (set #defdisk "Disk & HD Tools")
  1307.    (set #defdocs "Documents")
  1308.    (set #defgame "Games")
  1309.    (set #defagfx "Graphics software")
  1310.    (set #defhard "Hardware Patches")
  1311.    (set #defmisc "Miscellaneous")
  1312.    (set #defmods "Music modules")
  1313.    (set #defamus "Music software")
  1314.    (set #defapix "Pictures")
  1315.    (set #deftext "Text software")
  1316.    (set #defutil "Utilities")  
  1317. ))
  1318.  
  1319. (if (= lcale 12) (
  1320.    (set #welcome "\nÃíàïí îíåaêíáañû á Çìðñaêêþñíï\n\nNewInstaller\n\nAáñíï: (ð) Aìãïäað Óaêéäìôaôì\n")
  1321.    (set #copydoc "Éíîçïòäñðþ ãíéòëäìñaõçþ é îïíâïaëëä NewInstaller...")
  1322.    (set #copyni  "Éíîçïòäñðþ íðìíáìíè óaèê NewInstaller...")
  1323.    (set #copymsg "Îíãíåãçñä îíåaêòèðña...\n\nÇìðñaêêçïòäñðþ NewInstaller")
  1324.    (set #fnshmsg "\nÇìðñaêêþõçþ áúîíêìäìa!\n\nÃêþ æaîòðéa NewInstaller ìaàäïçñä á CLI: NewInstaller!\n\nÎíãïíàìíðñç ðëíñïçñä á ãíéòëäìñaõçç!")
  1325.    (set #language "russian")
  1326.    (set #copyreq "\nInstalling reqtools.library...")
  1327.    (set #copygui "\nInstalling guigfx.library...")
  1328.    (set #copyren "\nInstalling render.library...")
  1329.    (set #chocpu  "\nPlease select your processor")
  1330.    (set #reqmc   "\nGuigfx.library and render.library require at least a 68020 CPU!\nThese libraries won`t be installed on your syste - there some functions of NewInstaller are restricted!")
  1331.    (set #bgfnd   "Do you want to retain your old background configuration or define them new?")
  1332.    (set #useold  "retain")
  1333.    (set #defnew  "define new")
  1334.    (set #conbg   (cat "\nAs the next step the configuration program for the backgrounds will be started! "
  1335.                       "You need to select three backgrounds, which NewInstaller will optionally use as "
  1336.                       "default. You cannot quit the program until you`ve selected the three backgrounds!"
  1337.                  )
  1338.    )
  1339.    (set #sndfnd  "Do you want to retain your old sound configuration or define them new?")
  1340.    (set #consnd  (cat "\nAs the next step the configuration program for the sounds will be started! "
  1341.                       "You need to select three sounds, which NewInstaller will optionally use as "
  1342.                       "default. You cannot quit the program until you`ve selected the three sounds! "
  1343.                       "\n\nPlease note that the maximum size of a sound is 128kb!" 
  1344.                  )
  1345.    )
  1346.    (set #selins  "Please select the drawer where the Commodore Installer is stored in. Normally this is C:")
  1347.    (set #sellha  "Please select the drawer where the LHA packer is stored in. Normally this is C:")
  1348.    (set #sellzx  "Please select the drawer where the LZX packer is stored in. Normally this is C:")
  1349.    (set #cfind   "The packer couldn`t be found in that drawer. Do you want to select a new drawer or do you want to renounce NewInstallers packersupport?")
  1350.    (set #cofind  "\nThe Commodore Installer couldn`t be found in that drawer. Please select the right drawer! Without the Commodore Installer NewInstaller cannot work!")
  1351.    (set #new     "select new drawer")
  1352.    (set #dont    "don`t installer packer support")  
  1353.    (set #inet    "\nIs your Amiga connected to Internet? If this is the case, you can use the new Internet features of NewInstaller!")
  1354.    (set #wprog   "Which TCP/IP Stack do you use to connect to Internet?")
  1355.    (set #other   "other program")
  1356.    (set #otherin "\nNewInstaller does not support your TCP/IP Stack yet. That means you cannot use the Auto-Online feature. But if your stack does support bsdsocket.library you can use all other Internet functions of NewInstaller!")
  1357.    (set #enname  "Please enter your name:")
  1358.    (set #enmail  "Please enter the mailserver (SMTP) of your Internet Service Provider:")
  1359.    (set #helpme  (cat "The mailserver is mostly in a form like mail.myprovider.com. If your provider is for example "
  1360.                       "online.no then the mailserver would most probably mail.online.no. If you`re not sure have a "
  1361.                       "look at the configuration of your email software!"
  1362.                  )
  1363.    )                   
  1364.    (set #myemail "Please enter your email address:")
  1365.    (set #endomai "Please enter the domain of your Internet Service Provider:")
  1366.    (set #helpdom "The domain of your provider is mostly the homepage without 'http://www.'. For example: If the homepage of your provider is http://www.dialup.no then the domain would most probably be dialup.no!")
  1367.    (set #fndold  "NewInstaller is already installed on your system. What do you want to do now?")
  1368.    (set #newcon  "configurate it new")
  1369.    (set #nothing "exit")   
  1370.    (set #insupd  "install update")
  1371.    (set #fincon  "\nNewInstaller was configured successfully!")
  1372.    (set #copyurl "\nInstalling openurl.library...")
  1373.    (set #urlpref "Where shall the preferences for OpenUrl.library be copied to?")
  1374.    (set #urlcon  "\nDo you want to configure OpenUrl.library now (advised) ?")
  1375.    (set #copyide "\nInstalling identify.library...")
  1376.    (set #msgide  "\nYou can get the full identify package from Aminet or from the homepage of the author Richard Körber!")
  1377.    (set #copypop "\nInstalling Popport.mcc...")
  1378.    (set #defdrws (cat "\nAs next you can select different drawers for different kinds of software "
  1379.                       "For example for games: dh2:Games/. You can totally select 15 different kinds "
  1380.                       "of software drawers. If you do not have a drawer for some kind of software, "
  1381.                       "e.g. for developing tools, just select SYS: or something similar."
  1382.                  )
  1383.    )
  1384.    (set #dedrw_a "Please select the drawer where your")
  1385.    (set #dedrw_b "is/are installed!")
  1386.    (set #defabiz "Business software")
  1387.    (set #defcomm "Communications")
  1388.    (set #defdemo "Graphics & Sound demos")
  1389.    (set #defadev "Development software")
  1390.    (set #defdisk "Disk & HD Tools")
  1391.    (set #defdocs "Documents")
  1392.    (set #defgame "Games")
  1393.    (set #defagfx "Graphics software")
  1394.    (set #defhard "Hardware Patches")
  1395.    (set #defmisc "Miscellaneous")
  1396.    (set #defmods "Music modules")
  1397.    (set #defamus "Music software")
  1398.    (set #defapix "Pictures")
  1399.    (set #deftext "Text software")
  1400.    (set #defutil "Utilities")  
  1401. ))
  1402.  
  1403. (if (= lcale 16) (
  1404.    (set #welcome "\nÄîáðî ïîæaëîâaòü â ïðîãðaììó óñòaíîâêè\n\nNewInstaller\n\n(C) Copyright îò Andreas Falkenhahn\n")
  1405.    (set #copydoc "Êîïèðóþ äîêóìåíòaöèþ NewInstaller...")
  1406.    (set #copyni  "Êîïèðóþ ïðîãðaììó NewInstaller...")
  1407.    (set #copymsg "Ïîäîæäèòå...\n\nÓñòaíaâëèâaþ NewInstaller")
  1408.    (set #fnshmsg "\nÓñòaíîâêa çaêîí÷åía!\n\nÌîæåòå çaïóñêaòü NewInstaller èç CLI: NewInstaller!\n\nÏðî÷òèòå äîêóìåíòaöèþ!")
  1409.    (set #language "ðóññêèé")
  1410.    (set #copyreq "\nInstalling reqtools.library...")
  1411.    (set #copygui "\nInstalling guigfx.library...")
  1412.    (set #copyren "\nInstalling render.library...")
  1413.    (set #chocpu  "\nPlease select your processor")
  1414.    (set #reqmc   "\nGuigfx.library and render.library require at least a 68020 CPU!\nThese libraries won`t be installed on your syste - there some functions of NewInstaller are restricted!")
  1415.    (set #bgfnd   "Do you want to retain your old background configuration or define them new?")
  1416.    (set #useold  "retain")
  1417.    (set #defnew  "define new")
  1418.    (set #conbg   (cat "\nAs the next step the configuration program for the backgrounds will be started! "
  1419.                       "You need to select three backgrounds, which NewInstaller will optionally use as "
  1420.                       "default. You cannot quit the program until you`ve selected the three backgrounds!"
  1421.                  )
  1422.    )
  1423.    (set #sndfnd  "Do you want to retain your old sound configuration or define them new?")
  1424.    (set #consnd  (cat "\nAs the next step the configuration program for the sounds will be started! "
  1425.                       "You need to select three sounds, which NewInstaller will optionally use as "
  1426.                       "default. You cannot quit the program until you`ve selected the three sounds! "
  1427.                       "\n\nPlease note that the maximum size of a sound is 128kb!" 
  1428.                  )
  1429.    )
  1430.    (set #selins  "Please select the drawer where the Commodore Installer is stored in. Normally this is C:")
  1431.    (set #sellha  "Please select the drawer where the LHA packer is stored in. Normally this is C:")
  1432.    (set #sellzx  "Please select the drawer where the LZX packer is stored in. Normally this is C:")
  1433.    (set #cfind   "The packer couldn`t be found in that drawer. Do you want to select a new drawer or do you want to renounce NewInstallers packersupport?")
  1434.    (set #cofind  "\nThe Commodore Installer couldn`t be found in that drawer. Please select the right drawer! Without the Commodore Installer NewInstaller cannot work!")
  1435.    (set #new     "select new drawer")
  1436.    (set #dont    "don`t installer packer support")  
  1437.    (set #inet    "\nIs your Amiga connected to Internet? If this is the case, you can use the new Internet features of NewInstaller!")
  1438.    (set #wprog   "Which TCP/IP Stack do you use to connect to Internet?")
  1439.    (set #other   "other program")
  1440.    (set #otherin "\nNewInstaller does not support your TCP/IP Stack yet. That means you cannot use the Auto-Online feature. But if your stack does support bsdsocket.library you can use all other Internet functions of NewInstaller!")
  1441.    (set #enname  "Please enter your name:")
  1442.    (set #enmail  "Please enter the mailserver (SMTP) of your Internet Service Provider:")
  1443.    (set #helpme  (cat "The mailserver is mostly in a form like mail.myprovider.com. If your provider is for example "
  1444.                       "online.no then the mailserver would most probably mail.online.no. If you`re not sure have a "
  1445.                       "look at the configuration of your email software!"
  1446.                  )
  1447.    )                   
  1448.    (set #myemail "Please enter your email address:")
  1449.    (set #endomai "Please enter the domain of your Internet Service Provider:")
  1450.    (set #helpdom "The domain of your provider is mostly the homepage without 'http://www.'. For example: If the homepage of your provider is http://www.dialup.no then the domain would most probably be dialup.no!")
  1451.    (set #fndold  "NewInstaller is already installed on your system. What do you want to do now?")
  1452.    (set #newcon  "configurate it new")
  1453.    (set #nothing "exit")   
  1454.    (set #insupd  "install update")
  1455.    (set #fincon  "\nNewInstaller was configured successfully!")
  1456.    (set #copyurl "\nInstalling openurl.library...")
  1457.    (set #urlpref "Where shall the preferences for OpenUrl.library be copied to?")
  1458.    (set #urlcon  "\nDo you want to configure OpenUrl.library now (advised) ?")
  1459.    (set #copyide "\nInstalling identify.library...")
  1460.    (set #msgide  "\nYou can get the full identify package from Aminet or from the homepage of the author Richard Körber!")
  1461.    (set #copypop "\nInstalling Popport.mcc...")
  1462.    (set #defdrws (cat "\nAs next you can select different drawers for different kinds of software "
  1463.                       "For example for games: dh2:Games/. You can totally select 15 different kinds "
  1464.                       "of software drawers. If you do not have a drawer for some kind of software, "
  1465.                       "e.g. for developing tools, just select SYS: or something similar."
  1466.                  )
  1467.    )
  1468.    (set #dedrw_a "Please select the drawer where your")
  1469.    (set #dedrw_b "is/are installed!")
  1470.    (set #defabiz "Business software")
  1471.    (set #defcomm "Communications")
  1472.    (set #defdemo "Graphics & Sound demos")
  1473.    (set #defadev "Development software")
  1474.    (set #defdisk "Disk & HD Tools")
  1475.    (set #defdocs "Documents")
  1476.    (set #defgame "Games")
  1477.    (set #defagfx "Graphics software")
  1478.    (set #defhard "Hardware Patches")
  1479.    (set #defmisc "Miscellaneous")
  1480.    (set #defmods "Music modules")
  1481.    (set #defamus "Music software")
  1482.    (set #defapix "Pictures")
  1483.    (set #deftext "Text software")
  1484.    (set #defutil "Utilities")  
  1485. ))
  1486.  
  1487. ; Define some procedures
  1488. (procedure selectdefdir
  1489.  
  1490.    (set defdir
  1491.               (askdir
  1492.                      (prompt  (cat #dedrw_a " " deftyp " " #dedrw_b))
  1493.                      (help    @askdir-help)
  1494.                      (default "Sys:")
  1495.               )
  1496.    )
  1497.  
  1498. )
  1499.      
  1500. (procedure askinstaller
  1501.  
  1502.    (while (= 0 (exists (cat commo "Installer"))) (
  1503.       
  1504.      (set commo
  1505.                (askdir
  1506.                       (prompt  #selins)
  1507.                       (help    @askfile-help)
  1508.                       (default "C:")
  1509.                )
  1510.      )  
  1511.  
  1512.      (if (= 0 (exists (cat commo "Installer"))) (
  1513.         (message #cofind)
  1514.      ))
  1515.  
  1516.    ))     
  1517. )
  1518.  
  1519. (procedure asklzx
  1520.  
  1521.    (while (= 0 nlzx) ( ;(exists (cat lzx "lzx"))) (
  1522.       
  1523.      (set lzx
  1524.                (askdir
  1525.                       (prompt  #sellzx)
  1526.                       (help    @askfile-help)
  1527.                       (default "C:")
  1528.                )
  1529.      )  
  1530.  
  1531.      (set nlzx 1)
  1532.  
  1533.      (if (= 0 (exists (cat lzx "lzx"))) (
  1534.         (set nlzx 0)
  1535.         (set lchoice
  1536.                     (askchoice
  1537.                               (choices #new #dont)
  1538.                               (prompt  #cfind)
  1539.                               (help    @askchoice-help)
  1540.                     )
  1541.         )                       
  1542.  
  1543.         (if (= lchoice 1) (
  1544.            (set nlzx 1)
  1545.            (set lzx "none")
  1546.         ))      
  1547.      ))
  1548.  
  1549.    ))     
  1550. )
  1551.  
  1552. (procedure asklha
  1553.  
  1554.    (while (= 0 nlha) (
  1555.       
  1556.      (set lha
  1557.                (askdir
  1558.                       (prompt  #sellha)
  1559.                       (help    @askfile-help)
  1560.                       (default "C:")
  1561.                )
  1562.      )  
  1563.  
  1564.      (set nlha 1)
  1565.  
  1566.      (if (= 0 (exists (cat lha "lha"))) (
  1567.         (set nlha 0)
  1568.         (set lhchoice
  1569.                     (askchoice
  1570.                               (choices #new #dont)
  1571.                               (prompt  #cfind)
  1572.                               (help    @askchoice-help)
  1573.                     )
  1574.         )                       
  1575.  
  1576.         (if (= lhchoice 1) (
  1577.            (set nlha 1)
  1578.            (set lha "none")
  1579.         ))      
  1580.      ))
  1581.  
  1582.    ))     
  1583. )
  1584.  
  1585. (procedure configni
  1586.  
  1587.    (askinstaller)
  1588.  
  1589.    (asklzx)
  1590.  
  1591.    (asklha)
  1592.  
  1593.    (message #defdrws)
  1594.  
  1595.    (set deftyp #defabiz)
  1596.    (selectdefdir)
  1597.    (set biz defdir)
  1598.  
  1599.    (set deftyp #defcomm)
  1600.    (selectdefdir)
  1601.    (set comm defdir)
  1602.  
  1603.    (set deftyp #defdemo)
  1604.    (selectdefdir)
  1605.    (set demo defdir)
  1606.  
  1607.    (set deftyp #defadev)
  1608.    (selectdefdir)
  1609.    (set dev defdir)
  1610.  
  1611.    (set deftyp #defdisk)
  1612.    (selectdefdir)
  1613.    (set disky defdir)   ; wow, Commo`s Installer cannot use 'disk' as a local variable
  1614.  
  1615.    (set deftyp #defdocs)
  1616.    (selectdefdir)
  1617.    (set docs defdir)
  1618.  
  1619.    (set deftyp #defgame)
  1620.    (selectdefdir)
  1621.    (set game defdir)
  1622.  
  1623.    (set deftyp #defagfx)
  1624.    (selectdefdir)
  1625.    (set gfx defdir)
  1626.  
  1627.    (set deftyp #defhard)
  1628.    (selectdefdir)
  1629.    (set hard defdir)
  1630.  
  1631.    (set deftyp #defmisc)
  1632.    (selectdefdir)
  1633.    (set misc defdir)
  1634.  
  1635.    (set deftyp #defmods)
  1636.    (selectdefdir)
  1637.    (set mods defdir)
  1638.  
  1639.    (set deftyp #defamus)
  1640.    (selectdefdir)
  1641.    (set mus defdir)
  1642.  
  1643.    (set deftyp #defapix)
  1644.    (selectdefdir)
  1645.    (set pix defdir)
  1646.  
  1647.    (set deftyp #deftext)
  1648.    (selectdefdir)
  1649.    (set text defdir)
  1650.    
  1651.    (set deftyp #defutil)
  1652.    (selectdefdir)
  1653.    (set util defdir)
  1654.  
  1655.    (set ainet
  1656.              (askbool
  1657.                      (prompt #inet)
  1658.                      (help   @askbool-help)
  1659.              ) 
  1660.    )
  1661.  
  1662.    (if (= ainet 0) (
  1663.       (set tcpip "none")
  1664.       (set username "none")
  1665.       (set mailserver "none")
  1666.       (set domain "none")
  1667.       (set email "none")
  1668.    ))   
  1669.    
  1670.    (if (= ainet 1) (
  1671.       (set tcpip
  1672.                 (askchoice
  1673.                           (choices "AmiTCP (Genesis)" "Miami" #other)
  1674.                           (prompt  #wprog)
  1675.                           (help    @askchoice-help)
  1676.                 )
  1677.       )
  1678.  
  1679.       (if (= tcpip 0) (
  1680.          (set tcpip "AmiTCP")
  1681.       ))
  1682.  
  1683.       (if (= tcpip 1) (
  1684.          (set tcpip "Miami")
  1685.       ))
  1686.          
  1687.       (if (= tcpip 2) (   ; I know that`s a dirty way....sorry!
  1688.          (message #otherin)
  1689.          (set tcpip "other")
  1690.       ))
  1691.   
  1692.       (set username
  1693.                    (askstring
  1694.                              (prompt #enname)
  1695.                              (help   @askstring-help)
  1696.                              (default (getenv "REALNAME"))
  1697.                    )
  1698.       )
  1699.  
  1700.       (set mailserver
  1701.                      (askstring
  1702.                                (prompt #enmail)
  1703.                                (help   #helpme)
  1704.                                (default (getenv "MAILSERVER"))
  1705.                      )
  1706.       )
  1707.  
  1708.       (set domain
  1709.                      (askstring
  1710.                                (prompt #endomai)
  1711.                                (help   #helpdom)
  1712.                                (default (getenv "DOMAIN"))
  1713.                      )
  1714.       )
  1715.  
  1716.       (set email
  1717.                 (askstring
  1718.                           (prompt  #myemail)
  1719.                           (help    @askchoice-help)
  1720.                           (default (getenv "MAILADDRESS"))
  1721.                 )
  1722.       )
  1723.                                               
  1724.    ))         
  1725.     
  1726.    ; Finally create the configuration file   
  1727.    (textfile 
  1728.       (dest "S:NewInstaller/NewInstaller.config")
  1729.       (append "/* NewInstaller Configuration File */\n")
  1730.       (append commo "\n")
  1731.       (append lzx "\n")
  1732.       (append lha "\n")
  1733.       (append tcpip "\n")
  1734.       (append username "\n")
  1735.       (append mailserver "\n")
  1736.       (append domain "\n")
  1737.       (append email "\n")
  1738.       (append biz "\n")
  1739.       (append comm "\n")
  1740.       (append demo "\n")
  1741.       (append dev "\n")
  1742.       (append disky "\n")
  1743.       (append docs "\n")
  1744.       (append game "\n")
  1745.       (append gfx "\n")
  1746.       (append hard "\n")
  1747.       (append misc "\n")
  1748.       (append mods "\n")
  1749.       (append mus "\n")
  1750.       (append pix "\n")
  1751.       (append text "\n")
  1752.       (append util "\n")
  1753.       (append "C:InstallerNG\n")
  1754.       (append username "\n")
  1755.       (append "Unknown\n")
  1756.       (append "Unknown\n")
  1757.       (append "Unknown\n")
  1758.       (append email "\n")
  1759.       (append "Nice program!\n")
  1760.       (append "/* End Of File */\n")
  1761.    )   
  1762. )
  1763.  
  1764. ; Display the start message
  1765. (message #welcome)
  1766.  
  1767. (complete 20)
  1768.  
  1769. ; Start process
  1770. (welcome)
  1771.  
  1772. (if (exists "S:NewInstaller/NewInstaller.config") (
  1773.    (set config
  1774.               (askchoice
  1775.                         (choices #insupd #newcon #nothing)
  1776.                         (prompt  #fndold)
  1777.                         (help    @askchoice-help)
  1778. ;                        (default 1)
  1779.               )
  1780.    )
  1781.    
  1782.    (if (= config 1) (
  1783.       (configni)
  1784.       (message #fincon)
  1785.       (exit (quiet))
  1786.    ))   
  1787.    
  1788.    (if (= config 2) (
  1789.       (exit (quiet))
  1790.    ))
  1791.       
  1792. )) 
  1793.  
  1794. (set destdir
  1795.     (askdir
  1796.        (prompt "Please select a destination for NewInstaller. A drawer called NewInstaller will be created there if it`s not present.")
  1797.        (help   @askdir-help)
  1798.        (default "Sys:")
  1799.     )
  1800. )
  1801.  
  1802. (working #copymsg)
  1803.      
  1804. (set newdir (tackon destdir "NewInstaller"))
  1805.  
  1806. (if (not (exists newdir)) (
  1807.    (makedir newdir) 
  1808. ))
  1809.  
  1810. (copyfiles
  1811.   (source (cat "/NewInstaller" version "_" revision ".info"))
  1812.   (dest  destdir)
  1813.   (newname "NewInstaller.info")
  1814.   (nogauge)
  1815. )  
  1816.  
  1817. (set demosdir (tackon newdir "Demos"))
  1818.                    
  1819. (if (not (exists demosdir)) (
  1820.    (makedir demosdir)
  1821. ))
  1822.  
  1823. (set catalogsdir (tackon newdir "Catalogs"))
  1824.                    
  1825. (if (not (exists catalogsdir)) (
  1826.    (makedir catalogsdir)
  1827. ))
  1828.  
  1829. (set defaultsdir (tackon newdir "Defaults"))
  1830.                    
  1831. (if (not (exists defaultsdir)) (
  1832.    (makedir defaultsdir)
  1833. ))
  1834.  
  1835. (copyfiles
  1836.    (source "Demos.info")
  1837.    (dest   newdir)
  1838.    (nogauge)
  1839. )
  1840.  
  1841. (set toolsdir (tackon newdir "Tools"))
  1842.                    
  1843. (if (not (exists toolsdir)) (
  1844.    (makedir toolsdir)
  1845. ))
  1846.  
  1847. (copyfiles
  1848.    (source "Tools.info")
  1849.    (dest   newdir)
  1850.    (nogauge)
  1851. )
  1852.  
  1853. (set docsdir (tackon newdir "Docs"))
  1854.    
  1855. (if (not (exists docsdir)) (
  1856.    (makedir docsdir)
  1857. ))
  1858.  
  1859. (copyfiles
  1860.    (source "Docs.info")
  1861.    (dest   newdir)
  1862.    (nogauge)
  1863. )
  1864.  
  1865. (if (not (exists "S:NewInstaller")) (
  1866.    (makedir "S:NewInstaller")
  1867. ))
  1868.  
  1869. (if (not (exists "S:NewInstaller/Defaults")) (
  1870.    (makedir "S:NewInstaller/Defaults")
  1871. ))
  1872.  
  1873. (if (not (exists "S:NewInstaller/Themes")) (
  1874.    (makedir "S:NewInstaller/Themes")
  1875. ))
  1876.  
  1877. (complete 40)
  1878.  
  1879. ; Copying executable
  1880. (copyfiles
  1881.    (source "NewInstaller")
  1882.    (dest   newdir)
  1883.    (infos)
  1884.    (nogauge)
  1885. )
  1886.    
  1887. (copyfiles
  1888.    (source "NewInstaller")
  1889.    (dest   "C:")
  1890.    (infos)
  1891.    (nogauge)
  1892. )
  1893.  
  1894. (complete 60)
  1895.  
  1896. (if (exists (cat "Docs/NI_" #language ".guide"))
  1897.    (set #docfile (cat "Docs/NI_" #language ".guide"))
  1898.  (
  1899.    (set #docfile "Docs/NI_english.guide")   
  1900. ))
  1901.  
  1902. ; and copy them
  1903. (copyfiles
  1904.    (source #docfile)
  1905.    (dest   docsdir)
  1906.    (newname "NewInstaller.guide") 
  1907.    (infos)
  1908.    (nogauge)
  1909. )
  1910.  
  1911. (copyfiles
  1912.    (source "Demos")
  1913.    (dest demosdir)
  1914.    (infos)
  1915.    (nogauge)
  1916.    (all)
  1917. )
  1918.  
  1919. (copyfiles
  1920.    (source "Defaults")
  1921.    (dest defaultsdir)
  1922.    (nogauge)
  1923.    (all)
  1924. )
  1925.  
  1926. (copyfiles
  1927.    (source "Catalogs")
  1928.    (dest catalogsdir)
  1929.    (nogauge)
  1930.    (all)
  1931. )
  1932.  
  1933. (copyfiles
  1934.    (source "Tools")
  1935.    (dest toolsdir)
  1936.    (infos)
  1937.    (nogauge)
  1938.    (all)
  1939. )
  1940.  
  1941. (copyfiles
  1942.    (source #readme)
  1943.    (dest newdir)
  1944.    (infos)
  1945.    (nogauge)
  1946. )   
  1947.  
  1948. (copyfiles
  1949.    (source "Install")
  1950.    (dest newdir)
  1951.    (infos)
  1952.    (nogauge)
  1953.    (newname "Setup")
  1954. )   
  1955.  
  1956. (copyfiles
  1957.    (source "defaults")
  1958.    (dest "S:NewInstaller/Defaults")
  1959.    (nogauge)
  1960.    (all)
  1961. )
  1962.  
  1963. (working #copymsg)
  1964. (complete 80)
  1965.  
  1966. ; Copying catalogs (english is inbuild)
  1967. (if (not (= #language "english")) (
  1968.    (if (not (exists (cat "Locale:Catalogs/" #language))) (
  1969.       (makedir (cat "Locale:Catalogs/" #language))
  1970.    ))
  1971.    
  1972.    (copyfiles
  1973.       (source (cat "Catalogs/" #language "/NewInstaller.catalog"))
  1974.       (dest   (cat "Locale:Catalogs/" #language "/"))
  1975.       (nogauge)
  1976.    )
  1977. ))
  1978.  
  1979. (copylib
  1980.    (source   "Libs/guigfx.library")
  1981.    (dest     "Libs:")
  1982.    (prompt   #copygui)
  1983.    (help     @copylib-help)
  1984.    (optional force askuser)
  1985.    (confirm)
  1986. )
  1987.  
  1988. (copylib
  1989.    (source   "Libs/render.library")
  1990.    (dest     "Libs:")
  1991.    (prompt   #copyren)
  1992.    (help     @copylib-help)
  1993.    (optional force askuser)
  1994.    (confirm)
  1995. )
  1996.  
  1997. ; NewInstaller strongly needs reqtools.library v38+
  1998. (copylib
  1999.    (source "Libs/reqtools.library")
  2000.    (dest   "Libs:") 
  2001.    (prompt #copyreq)
  2002.    (help   @copylib-help)
  2003.    (optional force askuser)
  2004.    (confirm)
  2005. )
  2006.  
  2007. (configni)
  2008.  
  2009. (copylib
  2010.    (source "Libs/identify.library")
  2011.    (dest   "Libs:")
  2012.    (prompt #copyide)
  2013.    (help   @copylib-help)
  2014.    (optional force askuser)
  2015.    (confirm)
  2016. )
  2017.    
  2018. (if (= ainet 1) (
  2019.    (if (= 0 (exists "libs:openurl.library")) (
  2020.       (copylib
  2021.               (source "Libs/openurl.library")
  2022.               (dest   "Libs:")
  2023.               (prompt #copyurl)
  2024.               (help   @copylib-help)
  2025.               (optional force askuser)
  2026.               (confirm)
  2027.       )
  2028.    ))
  2029. ))      
  2030.    
  2031. (working #copymsg)
  2032. (complete 100)
  2033.  
  2034. ; show the readme file with multiview (V39+)
  2035. (run (cat "sys:utilities/multiview " #readme))
  2036. (message #fnshmsg)
  2037.  
  2038. ; Quiet exit
  2039. (exit (quiet))
  2040.